Files
huly-platform/pods/collaborator/Dockerfile
T

11 lines
177 B
Docker

FROM node:20
WORKDIR /usr/src/app
RUN npm install --ignore-scripts=false --verbose bufferutil --unsafe-perm
COPY bundle/bundle.js ./
EXPOSE 3078
CMD [ "node", "bundle.js" ]