mirror of
https://github.com/hcengineering/platform.git
synced 2024-12-23 19:44:59 +03:00
c23af625f6
Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
14 lines
259 B
Docker
14 lines
259 B
Docker
FROM node:20-alpine
|
|
|
|
RUN apk add dumb-init
|
|
ENV NODE_ENV production
|
|
|
|
WORKDIR /app
|
|
RUN npm install --ignore-scripts=false --verbose sharp@v0.32.6 --unsafe-perm
|
|
|
|
COPY bundle/bundle.js ./
|
|
COPY dist/ ./dist/
|
|
|
|
EXPOSE 8080
|
|
CMD [ "dumb-init", "node", "./bundle.js" ]
|