Files
dockerhub-autobuild/webtest/Dockerfile
Christian Richter 0215901abc
Some checks reported errors
continuous-integration/drone/pr Build was killed
clean up
Signed-off-by: Christian Richter <crichter@owncloud.com>
2022-05-12 12:05:25 +02:00

13 lines
321 B
Docker

FROM debian:latest
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 ./webtest/entrypoint.sh /bin
COPY ./webtest/index.html /web
WORKDIR /web
EXPOSE 80
ENTRYPOINT entrypoint.sh