Files
tamagotchi-service/frontend/Dockerfile
T
khalil 83ed8f6876
CI/CD Pipeline / test (push) Successful in 8s
CI/CD Pipeline / build-push-deploy (push) Successful in 6s
chore: fix OCI source label URL to match canonical domain
2026-07-04 18:42:34 +00:00

8 lines
284 B
Docker

FROM nginx:alpine
LABEL org.opencontainers.image.source="https://git.khalilaliouich.com/khalil/tamagotchi-service"
COPY nginx.conf /etc/nginx/conf.d/default.conf
COPY index.html /usr/share/nginx/html/
COPY style.css /usr/share/nginx/html/
COPY app.js /usr/share/nginx/html/
EXPOSE 80