Skip to content

Commit

Permalink
Create Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
raushan9038 authored Apr 2, 2021
0 parents commit 3f78899
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
FROM centos:latest
MAINTAINER [email protected]
RUN yum install -y httpd \
zip \
unzip
ADD https://www.free-css.com/assets/files/free-css-templates/download/page265/shree.zip /var/www/html/
WORKDIR /var/www/html
RUN unzip shree.zip
RUN cp -rvf shree/*
RUN rm -rf shree shree.zip
CMD ["/usr/sbin/httpd", "-D", "FOREGROUND"]
EXPOSE 80

0 comments on commit 3f78899

Please sign in to comment.