mirror of
https://gitlab.com/timvisee/send.git
synced 2024-11-10 05:02:45 +01:00
10 lines
112 B
Docker
10 lines
112 B
Docker
|
FROM node:8-alpine
|
||
|
|
||
|
COPY . /app
|
||
|
WORKDIR /app
|
||
|
RUN mkdir static
|
||
|
RUN npm install
|
||
|
|
||
|
EXPOSE 1443
|
||
|
CMD ["npm", "start"]
|