Armin Friedl
a35d80124a
All checks were successful
continuous-integration/drone/push Build is passing
9 lines
318 B
Docker
9 lines
318 B
Docker
FROM alpine
|
|
|
|
RUN adduser web --disabled-password --no-create-home --shell /sbin/nologin && \
|
|
addgroup web web && \
|
|
mkdir -p /var/www/html
|
|
|
|
COPY suckless-quark/quark-dirl /usr/local/bin
|
|
|
|
ENTRYPOINT ["quark-dirl", "-p", "80", "-u", "web", "-g", "web", "-n", "4096", "-h", "0.0.0.0", "-l", "-d", "/var/www/html"]
|