mirror of
https://gitlab.dit.htwk-leipzig.de/htwk-software/htwkalender-pwa.git
synced 2026-01-16 13:02:25 +01:00
8 lines
81 B
Docker
8 lines
81 B
Docker
FROM node:latest
|
|
|
|
WORKDIR /app
|
|
COPY package*.json ./
|
|
RUN npm install
|
|
COPY ./ ./
|
|
|