Files
dockerhub-autobuild/webtest/Dockerfile
2020-08-04 16:16:31 +02:00

11 lines
200 B
Docker

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