mirror of
https://github.com/timvisee/send.git
synced 2026-03-05 13:39:54 -05: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"]
|