This repository has been archived on 2025-08-09. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
web-app-template/view/Dockerfile
2024-07-25 17:23:46 +02:00

10 lines
150 B
Docker

FROM node:20 AS build
WORKDIR .
COPY . ./
RUN npm install && npm run build
FROM nginx:1.27.0-alpine
COPY --from=build /build /usr/share/nginx/html