This repository has been archived on 2026-03-16. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
softwareengineering-2-modar.../frontend/Dockerfile
2025-07-09 16:47:21 +02:00

16 lines
No EOL
186 B
Docker

FROM node:lts AS build
WORKDIR /app
COPY . .
RUN npm install
RUN npm run build
FROM caddy:latest
WORKDIR /app
COPY --from=build /app/dist/ /app
COPY Caddyfile /etc/caddy/Caddyfile