helpme-tips/Dockerfile
djg 43edfa44b8
Some checks failed
Build and Deploy / deploy (push) Failing after 27s
ci: switch to Docker image build and kubectl rollout
2026-09-21 22:25:40 +00:00

9 lines
197 B
Docker

FROM python:3.11-slim AS builder
WORKDIR /app
COPY . .
RUN python3 build.py
FROM nginx:alpine
COPY --from=builder /app/site/ /usr/share/nginx/html/
COPY nginx.conf /etc/nginx/nginx.conf
EXPOSE 80