mirror of
https://github.com/LeRoid-hub/Mensa-API.git
synced 2025-01-31 03:34:57 +00:00
12 lines
171 B
Docker
12 lines
171 B
Docker
FROM node:latest as build-stage
|
|
WORKDIR /app
|
|
COPY package*.json ./
|
|
RUN npm i
|
|
COPY . .
|
|
|
|
FROM build-stage as production
|
|
|
|
ENV NODE_PATH=./build
|
|
|
|
RUN npm run build
|