Initial commit

This commit is contained in:
Christian
2020-08-04 14:19:00 +02:00
committed by Christian Richter
commit 61da308f8b
7 changed files with 46 additions and 0 deletions

10
webtest/Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
FROM debian:latest
RUN apt-get update \
&& apt-get install -y ruby
EXPOSE 80
RUN mkdir /web
RUN chmod 0777 /web
WORKDIR /web
COPY ./entrypoint.sh /bin
COPY ./index.html /web
ENTRYPOINT entrypoint.sh