1
0
Fork 0
mirror of https://github.com/bastienwirtz/homer.git synced 2026-01-23 02:15:09 +00:00
homer/Dockerfile
2020-01-21 21:29:57 +01:00

15 lines
238 B
Docker

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/"]