Files
homepage/Dockerfile
T
ducoterra f62b530277
Build and Push Container / build-and-push (push) Successful in 40s
add profile picture
2026-05-27 23:03:08 -04:00

16 lines
411 B
Docker

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/
COPY src/profile.jpeg /usr/share/nginx/html/
EXPOSE 8080
HEALTHCHECK --interval=30s --timeout=3s --retries=3 \
CMD wget -qO- http://localhost:8080/ || exit 1