Files
huly-platform/server/server/Dockerfile
T
Andrey Platov c713a07531 tooling update
Signed-off-by: Andrey Platov <andrey@hardcoreeng.com>
2021-08-28 23:28:46 +02:00

9 lines
92 B
Docker

FROM node
WORKDIR /usr/src/app
COPY bundle.js ./
EXPOSE 8080
CMD [ "node", "bundle.js" ]