diff --git a/Dockerfile b/Dockerfile index f036cfd..0193116 100755 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,11 @@ -FROM nginx:alpine +FROM busybox + LABEL maintainer="Jeroen Pardon" -RUN apk add nano +WORKDIR /opt/html -RUN rm -rf /usr/share/nginx/html -COPY . /usr/share/nginx/html +COPY . /opt/html -EXPOSE 80 \ No newline at end of file +EXPOSE 80 + +ENTRYPOINT [ "httpd", "-f", "-v", "-u", "1000" ]