24
1
Fork 0
drop.chapril.org-firefoxsend/Dockerfile

10 lines
112 B
Docker
Raw Normal View History

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