quark-build/Dockerfile
Armin Friedl 1fba927acb
All checks were successful
continuous-integration/drone/push Build is passing
Listen on standard web port
2020-08-30 22:43:52 +02:00

9 lines
308 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 /usr/local/bin
ENTRYPOINT ["quark", "-p", "80", "-u", "web", "-g", "web", "-n", "4096", "-h", "0.0.0.0", "-l", "-d", "/var/www/html"]