mirror of
https://gitlab.com/timvisee/send.git
synced 2024-11-11 05:32:40 +01:00
12 lines
128 B
Docker
12 lines
128 B
Docker
FROM node:8-alpine
|
|
|
|
COPY . /app
|
|
WORKDIR /app
|
|
RUN mkdir static
|
|
RUN npm install
|
|
|
|
ENV PORT=1443
|
|
EXPOSE $PORT
|
|
|
|
CMD ["npm", "start"]
|