This repository has been archived on 2024-07-10. You can view files and clone it, but cannot push or open issues or pull requests.
frontend/Dockerfile
Late Night Defender f46f4c7e65 pass --host to vite
2024-03-28 01:01:51 +07:00

16 lines
291 B
Docker

FROM docker.io/library/alpine:latest
# Set up environment for building
RUN apk add nodejs npm
# Copy files to build environment
RUN mkdir /opt/little-lines-frontend
COPY . /opt/little-lines-frontend
# Start the app
WORKDIR /opt/little-lines-frontend
RUN npm i
CMD npm run dev -- --host