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
2024-03-28 00:45:09 +07:00

16 lines
288 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