mirror of
https://github.com/hcengineering/platform.git
synced 2024-11-27 11:06:50 +03:00
c3a5b88b6e
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 3000
|
|
CMD [ "node", "bundle.js" ]
|