mirror of
https://github.com/hcengineering/platform.git
synced 2025-01-23 12:05:36 +00:00
9 lines
109 B
Docker
9 lines
109 B
Docker
|
FROM node:20-alpine
|
||
|
|
||
|
WORKDIR /usr/src/app
|
||
|
|
||
|
COPY bundle/bundle.js ./
|
||
|
|
||
|
EXPOSE 4007
|
||
|
CMD [ "node", "bundle.js" ]
|