Armin Friedl
c509f5d3df
All checks were successful
continuous-integration/drone/push Build is passing
11 lines
323 B
Docker
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"]
|