twenty/infra/dev/front/Dockerfile

17 lines
321 B
Docker
Raw Normal View History

2023-04-18 17:21:38 +03:00
FROM node:18.16.0-alpine as front
2023-01-27 14:12:04 +03:00
2023-04-09 17:43:43 +03:00
RUN apk update && apk upgrade && \
apk add --no-cache bash git openssh && \
apk add libc6-compat
2023-04-12 16:08:27 +03:00
WORKDIR /app/front
2023-01-27 14:12:04 +03:00
COPY ../../front/package.json .
COPY ../../front/package-lock.json .
COPY ../../front/.npmrc .
2023-04-12 16:08:27 +03:00
RUN npm install
2023-01-27 14:12:04 +03:00
COPY ../../front .
2023-01-27 14:12:04 +03:00
CMD ["npm", "run", "start"]