]> git.immae.eu Git - github/bastienwirtz/homer.git/blobdiff - Dockerfile
Create Dockerfile
[github/bastienwirtz/homer.git] / Dockerfile
diff --git a/Dockerfile b/Dockerfile
new file mode 100644 (file)
index 0000000..df88934
--- /dev/null
@@ -0,0 +1,15 @@
+FROM alpine:3.11
+
+COPY ./ /www/
+
+ENV USER abc
+ENV GROUP abc
+ENV GID 911
+ENV UID 911
+
+RUN addgroup -S ${GROUP} -g ${GID} && adduser -D -S -u ${UID} ${USER} ${GROUP} && \
+    apk add -U darkhttpd
+
+USER abc
+
+ENTRYPOINT ["darkhttpd","/www/"]