Files
python-jenkins-project/Dockerfile

10 lines
173 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
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]