mirror of
https://gitlab.com/timvisee/send.git
synced 2025-12-08 19:33:24 +00: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"]
|