mirror of
https://github.com/diced/zipline.git
synced 2025-05-17 15:01:24 +02:00
12 lines
No EOL
142 B
Docker
12 lines
No EOL
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"] |