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