mirror of
https://github.com/hcengineering/platform.git
synced 2024-12-25 04:25:13 +03:00
442fcace43
Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
9 lines
132 B
Docker
9 lines
132 B
Docker
FROM node:18
|
|
|
|
WORKDIR /usr/src/app
|
|
|
|
COPY bundle.js ./
|
|
|
|
EXPOSE 8080
|
|
CMD [ "node", "--enable-source-maps", "--inspect", "bundle.js" ]
|