mirror of
https://github.com/hcengineering/platform.git
synced 2025-03-15 10:37:52 +00:00
10 lines
165 B
Docker
10 lines
165 B
Docker
|
|
FROM hardcoreeng/base:v20250310
|
|
WORKDIR /usr/src/app
|
|
|
|
COPY bundle/bundle.js ./
|
|
COPY bundle/bundle.js.map ./
|
|
|
|
EXPOSE 6767
|
|
CMD [ "node", "--expose-gc", "bundle.js" ]
|