cv/Dockerfile
ordinarthur 851ab1fc55
Some checks failed
Build & Deploy / build-and-deploy (push) Has been cancelled
Initial deploy setup — CV static site
Dockerfile (nginx alpine), K3s manifests (cv namespace, NodePort 30111),
Gitea Actions workflow for build + rollout. Targets cv.arthurbarre.fr.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-05-12 16:45:11 +02:00

10 lines
193 B
Docker

FROM nginx:1.27-alpine
WORKDIR /usr/share/nginx/html
RUN rm -f index.html
COPY Resume-Arthur-barre-fr.html cv-short.html photo.jpg ./
RUN cp Resume-Arthur-barre-fr.html index.html
EXPOSE 80