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

13 lines
219 B
Docker

FROM node:20
ENV NODE_ENV production
WORKDIR /app
RUN npm install --ignore-scripts=false --verbose bufferutil --unsafe-perm
COPY bundle/bundle.js ./
# COPY ./dist/*.node ./
EXPOSE 8080
CMD [ "node", "./bundle.js" ]