mirror of
https://github.com/hcengineering/platform.git
synced 2024-12-19 00:41:47 +03:00
f8cc27b590
Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
10 lines
208 B
Docker
10 lines
208 B
Docker
FROM node:20
|
|
|
|
WORKDIR /usr/src/app
|
|
|
|
COPY bundle/bundle.js ./
|
|
RUN npm install --ignore-scripts=false --verbose bufferutil utf-8-validate @mongodb-js/zstd --unsafe-perm
|
|
|
|
EXPOSE 3000
|
|
CMD [ "node", "bundle.js" ]
|