Signed-off-by: Christian Richter <crichter@owncloud.com>
This commit is contained in:
Christian Richter
2022-05-12 11:31:48 +02:00
parent ca8d7012ba
commit dab39f2b60
9 changed files with 23 additions and 177 deletions

View File

@@ -1,12 +1,12 @@
FROM debian:latest
LABEL maintainer="dragonchaser <crichter@suse.de>"
LABEL maintainer="dragonchaser <autobuilds@datenschmutz.space>"
RUN apt-get update \
&& apt-get install -y ruby \
&& rm -rf /var/lib/apt/lists/* \
&& mkdir /web \
&& chmod 0777 /web
COPY ./entrypoint.sh /bin
COPY ./index.html /web
COPY ./webtest/entrypoint.sh /bin
COPY ./webtest/index.html /web
WORKDIR /web
EXPOSE 80
ENTRYPOINT entrypoint.sh