Files
website/Dockerfile
tikaiz 2de74a9882
All checks were successful
publish.yml / publish (push) Successful in 22s
commit signing from second device
2026-04-19 00:12:56 +02:00

14 lines
277 B
Docker

FROM node:lts-alpine AS build
WORKDIR /app
COPY . .
RUN npm install
RUN npm run build
FROM nginx:alpine-slim
EXPOSE 80
COPY nginx.conf /etc/nginx/conf.d/default.conf
COPY --from=build /app/dist/website/browser /usr/share/nginx/html
ENTRYPOINT ["nginx", "-g", "daemon off;"]