Files
huly-platform/server/collaborator/Dockerfile
T
2024-07-19 01:04:48 +07:00

9 lines
109 B
Docker

FROM node:20-alpine
WORKDIR /usr/src/app
COPY bundle/bundle.js ./
EXPOSE 3078
CMD [ "node", "bundle.js" ]