oktopus/frontend/build/Dockerfile
2024-03-31 16:20:49 -03:00

11 lines
125 B
Docker

FROM node:16.20.2-alpine
WORKDIR /app
COPY ../ .
RUN npm install
RUN npm run build
ENTRYPOINT [ "npm", "run", "start" ]