mirror of
https://github.com/hcengineering/platform.git
synced 2024-12-22 02:51:54 +03:00
b8b8e8bd44
Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
9 lines
95 B
Docker
9 lines
95 B
Docker
FROM node:18
|
|
|
|
WORKDIR /usr/src/app
|
|
|
|
COPY bundle.js ./
|
|
|
|
EXPOSE 8080
|
|
CMD [ "node", "bundle.js" ]
|