Files
zipline/Dockerfile
dicedtomatoreal a9aba8f933 docker support
2020-10-28 13:44:40 -07:00

12 lines
142 B
Docker

FROM node:14
WORKDIR /opt/zipline
COPY . /opt/zipline
RUN npm i
RUN npm run build
ENV NODE_ENV=production
EXPOSE 8000
CMD ["node", "dist"]