Advertisement
uopspop

Untitled

Mar 21st, 2020
253
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. FROM alpine:latest
  2. ENV myworkdir /var/www/localhost/htdocs/
  3. ARG whoami=Sam
  4. WORKDIR ${myworkdir}
  5. RUN apk --update add apache2
  6. RUN rm -rf /var/cache/apk/*
  7. RUN echo "<h3>I am ${whoami}. I am taking this great Docker Course. Round 01<h3>" >> index.html
  8. RUN echo "<h3>I am ${whoami}. I am taking this great Docker Course. Round 02<h3>" >> index.html
  9. RUN echo "<h3>I am ${whoami}. I am taking this great Docker Course. Round 03<h3>" >> index.html
  10. COPY ./content.txt ./
  11. RUN ls -l ./
  12. RUN cat ./content.txt >> index.html
  13. ENTRYPOINT ["httpd", "-D", "FOREGROUND"]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement