mirror of
https://github.com/VueTorrent/VueTorrent.git
synced 2024-11-28 21:18:54 +03:00
16 lines
317 B
Docker
16 lines
317 B
Docker
# build stage
|
|
FROM node:10-slim as build-stage
|
|
# Create app directory
|
|
WORKDIR /usr/src/app
|
|
COPY package*.json ./
|
|
RUN npm install
|
|
COPY . .
|
|
RUN npm run build
|
|
|
|
# production stage
|
|
FROM node:10-slim as production-stage
|
|
COPY --from=build-stage /usr/src/app /usr/src/app
|
|
|
|
#serve
|
|
EXPOSE 3001
|
|
CMD ["node", "server/server.js"]
|