Files
htwkalender-pwa/frontend/Dockerfile

8 lines
81 B
Docker

FROM node:latest
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY ./ ./