quark-build/Dockerfile
Armin Friedl c1284e3f98
All checks were successful
continuous-integration/drone/push Build is passing
Build apline quark
2020-08-30 20:41:22 +02:00

11 lines
306 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", "-l", "-d", "/var/www/html"]