init
Build and Push Container / build-and-push (push) Failing after 8s

This commit is contained in:
2026-05-27 21:48:49 -04:00
commit 2531ee4402
9 changed files with 1354 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
FROM docker.io/library/nginx:alpine
RUN rm /etc/nginx/conf.d/default.conf
COPY nginx.conf /etc/nginx/conf.d/default.conf
COPY src/index.html /usr/share/nginx/html/
COPY src/style.css /usr/share/nginx/html/
COPY src/script.js /usr/share/nginx/html/
EXPOSE 8080
HEALTHCHECK --interval=30s --timeout=3s --retries=3 \
CMD wget -qO- http://localhost:8080/ || exit 1