mirror of
https://github.com/LeRoid-hub/Mensa-API.git
synced 2025-01-31 11:44:55 +00:00
12 lines
160 B
Docker
12 lines
160 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
|