twenty/infra/dev/front/Dockerfile

14 lines
246 B
Docker
Raw Normal View History

2023-04-12 16:08:27 +03:00
FROM node:18-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
COPY ../../front .
2023-01-27 14:12:04 +03:00
2023-04-14 12:52:12 +03:00
RUN export $(xargs <.env)
2023-04-12 16:08:27 +03:00
RUN npm install
2023-01-27 14:12:04 +03:00
CMD ["npm", "run", "start"]