Advertisement
uopspop

Untitled

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