Files
test_build/Dockerfile
Bensch 675c3147d9
Some checks failed
Build Dockerfile with Remote BuildKit / build (push) Failing after 4s
test
2026-02-24 14:59:12 +00:00

10 lines
203 B
Docker

# Base Image
FROM nginx:alpine
# MAINTAINER of the Dockerfile
MAINTAINER benschhold@gmail.com <benschold@gmail.com>
#Expose Nginx Port
EXPOSE 80
#Start NginxService
CMD ["nginx", "-g", "daemon off;"]