onsp / Dockerfile
onhu's picture
Update Dockerfile
e680af8
raw
history blame
No virus
126 Bytes
FROM node:slim
ENV NODE_ENV=production
ENV PORT=7860
WORKDIR /app
COPY dist dist/
EXPOSE 7860
CMD [ "node", "./main.js" ]