mirror of
https://github.com/twentyhq/twenty.git
synced 2024-12-29 23:34:50 +03:00
14 lines
246 B
Docker
14 lines
246 B
Docker
FROM node:18-alpine as front
|
|
|
|
RUN apk update && apk upgrade && \
|
|
apk add --no-cache bash git openssh && \
|
|
apk add libc6-compat
|
|
|
|
WORKDIR /app/front
|
|
COPY ../../front .
|
|
|
|
RUN export $(xargs <.env)
|
|
RUN npm install
|
|
|
|
CMD ["npm", "run", "start"]
|