mirror of
https://github.com/hcengineering/platform.git
synced 2024-12-19 00:41:47 +03:00
9 lines
110 B
Docker
9 lines
110 B
Docker
|
FROM node:20-alpine
|
||
|
|
||
|
WORKDIR /usr/src/app
|
||
|
|
||
|
COPY bundle/bundle.js ./
|
||
|
|
||
|
EXPOSE 8089
|
||
|
CMD [ "node", "bundle.js" ]
|