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