mirror of
https://github.com/VueTorrent/VueTorrent.git
synced 2024-11-29 05:28:53 +03:00
14 lines
No EOL
159 B
Docker
14 lines
No EOL
159 B
Docker
FROM node:10-slim
|
|
|
|
# Create app directory
|
|
WORKDIR /usr/src/app
|
|
|
|
COPY package*.json ./
|
|
|
|
RUN npm install
|
|
|
|
COPY . .
|
|
|
|
EXPOSE 3001
|
|
|
|
CMD ["node", "server/server.js"] |