Files
huly-platform/server/collaborator/Dockerfile
T
2024-02-12 23:57:11 +07:00

10 lines
110 B
Docker

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