blue/green pipeline

This commit is contained in:
Sergei Poljanski 2025-11-25 02:43:23 +02:00
commit 679aff0ebe
Signed by: asxpi
GPG key ID: 4F8851660FA4121B
6 changed files with 38 additions and 2 deletions

11
Dockerfile Normal file
View file

@ -0,0 +1,11 @@
FROM nginx:alpine
# Copy website files to nginx html directory
COPY index.html /usr/share/nginx/html/
COPY pix/ /usr/share/nginx/html/pix/
# Expose port 80
EXPOSE 80
# Start nginx
CMD ["nginx", "-g", "daemon off;"]