mirror of
https://gitlab.dit.htwk-leipzig.de/htwk-software/htwkalender.git
synced 2025-08-02 17:59:14 +02:00
8 lines
89 B
Docker
8 lines
89 B
Docker
FROM node:lts-alpine3.18
|
|
|
|
WORKDIR /app
|
|
COPY package*.json ./
|
|
RUN npm install
|
|
COPY ./ ./
|
|
|