drop.chapril.org-firefoxsend/Dockerfile

12 lines
121 B
Docker
Raw Normal View History

2017-06-23 01:26:08 +02:00
FROM node:8
2017-06-09 01:11:17 +02:00
COPY . /app
WORKDIR /app
RUN mkdir static
RUN npm install
ENV PORT=1443
EXPOSE $PORT
2017-06-09 01:11:17 +02:00
CMD ["npm", "start"]