mirror of
https://github.com/hcengineering/platform.git
synced 2024-11-23 05:53:09 +03:00
f8cc27b590
Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
12 lines
227 B
Docker
12 lines
227 B
Docker
FROM node:20
|
|
|
|
ENV NODE_ENV production
|
|
|
|
WORKDIR /app
|
|
RUN npm install --ignore-scripts=false --verbose bufferutil utf-8-validate @mongodb-js/zstd --unsafe-perm
|
|
|
|
COPY bundle/bundle.js ./
|
|
|
|
EXPOSE 8080
|
|
CMD [ "node", "./bundle.js" ]
|