Files
test_build/Dockerfile
Bensch 4d7f91b116 init
2026-02-24 13:52:32 +00:00

20 lines
290 B
Docker

# Base Image
FROM nginx:alpine
# MAINTAINER of the Dockerfile
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 80
#Start NginxService
CMD ["nginx", "-g", "daemon off;"]