Files
huly-platform/server/front/Dockerfile
T
2022-02-23 23:10:43 +07:00

10 lines
114 B
Docker

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