test
Some checks failed
Build Dockerfile with Remote BuildKit / build (push) Failing after 4s

This commit is contained in:
Bensch
2026-02-24 14:59:12 +00:00
parent 13d6e28f2b
commit 675c3147d9

View File

@@ -1,19 +1,9 @@
# Base Image # Base Image
FROM nginx:alpine FROM nginx:alpine
# MAINTAINER of the Dockerfile # MAINTAINER of the Dockerfile
MAINTAINER benschhold@gmail.com <benschold@gmail.com>
MAINTAINER Bikram <bikramatmedium@gmail.com>
#Copy the index.html file /usr/share/nginx/html/
COPY index.html /usr/share/nginx/html/
#Expose Nginx Port #Expose Nginx Port
EXPOSE 80 EXPOSE 80
#Start NginxService #Start NginxService
CMD ["nginx", "-g", "daemon off;"] CMD ["nginx", "-g", "daemon off;"]