mirror of
https://github.com/hcengineering/platform.git
synced 2026-08-21 11:52:23 +02:00
git-subtree-dir: foundations/net git-subtree-mainline:2b0d510202git-subtree-split:7722c95341
12 lines
228 B
Docker
12 lines
228 B
Docker
FROM hardcoreeng/base-slim:v20250915
|
|
|
|
WORKDIR /usr/src/app
|
|
|
|
RUN npm install --ignore-scripts=false --verbose zeromq --unsafe-perm
|
|
|
|
COPY bundle/bundle.js ./
|
|
COPY bundle/bundle.js.map ./
|
|
|
|
EXPOSE 8080
|
|
CMD [ "node", "./bundle.js" ]
|