mirror of
https://github.com/twentyhq/twenty.git
synced 2024-12-19 01:21:30 +03:00
13 lines
223 B
Docker
13 lines
223 B
Docker
FROM node:18-alpine as server
|
|
|
|
RUN apk update && apk upgrade && \
|
|
apk add --no-cache bash git openssh && \
|
|
apk add libc6-compat
|
|
|
|
WORKDIR /app/server
|
|
COPY ../../server .
|
|
|
|
RUN npm install
|
|
|
|
CMD ["npm", "run", "start"]
|