mirror of
https://github.com/hcengineering/platform.git
synced 2025-03-15 02:23:12 +00:00
11 lines
192 B
Docker
11 lines
192 B
Docker
|
|
FROM hardcoreeng/base:v20250113a
|
|
WORKDIR /usr/src/app
|
|
|
|
COPY bundle/bundle.js ./
|
|
COPY bundle/bundle.js.map ./
|
|
COPY bundle/model.json ./
|
|
|
|
EXPOSE 4700
|
|
CMD [ "node", "--expose-gc", "bundle.js" ]
|