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