Files
python-jenkins-project/Dockerfile

14 lines
316 B
Docker
Raw Normal View History

2025-03-04 18:49:45 +00:00
FROM python:3.9-slim-buster
RUN apt-get update && apt-get install -y nginx
COPY index.html /usr/share/nginx/html/index.html
2025-03-04 22:37:42 +00:00
RUN sed -i 's|root /var/www/html;|root /usr/share/nginx/html;|' /etc/nginx/sites-available/default && \
nginx -t && \
nginx -s reload
2025-03-04 18:49:45 +00:00
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]