mirror of
https://github.com/hcengineering/platform.git
synced 2025-04-03 06:21:28 +00:00
10 lines
217 B
Docker
10 lines
217 B
Docker
FROM node:20
|
|
|
|
WORKDIR /usr/src/app
|
|
|
|
RUN npm install --ignore-scripts=false --verbose bufferutil utf-8-validate @mongodb-js/zstd snappy msgpackr msgpackr-extract --unsafe-perm
|
|
|
|
COPY bundle/bundle.js ./
|
|
|
|
CMD [ "bash" ]
|