quark-build/Dockerfile
Armin Friedl c509f5d3df
All checks were successful
continuous-integration/drone/push Build is passing
Listen on all interfaces
2020-08-30 22:33:21 +02:00

11 lines
323 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
EXPOSE 8080
ENTRYPOINT ["quark", "-p", "8080", "-u", "web", "-g", "web", "-n", "4096", "-h", "0.0.0.0", "-l", "-d", "/var/www/html"]