1
0
mirror of https://gitlab.com/timvisee/send.git synced 2024-11-10 05:02:45 +01:00
send/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"]