mirror of
https://github.com/hcengineering/platform.git
synced 2026-08-26 22:32:23 +02:00
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" ]
|