quark-build/Dockerfile

10 lines
318 B
Docker
Raw Normal View History

2020-08-18 20:30:33 +00:00
FROM alpine
2020-08-30 18:04:18 +00:00
RUN adduser web --disabled-password --no-create-home --shell /sbin/nologin && \
addgroup web web && \
mkdir -p /var/www/html
2020-08-31 18:51:57 +00:00
COPY suckless-quark/quark-dirl /usr/local/bin
2020-08-18 20:30:33 +00:00
2020-08-31 18:51:57 +00:00
ENTRYPOINT ["quark-dirl", "-p", "80", "-u", "web", "-g", "web", "-n", "4096", "-h", "0.0.0.0", "-l", "-d", "/var/www/html"]