Armin Friedl
44e56b3280
All checks were successful
continuous-integration/drone/push Build is passing
9 lines
308 B
Docker
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 dirl-musl-x86_64 /usr/local/bin/dirl
|
|
|
|
ENTRYPOINT ["dirl", "-p", "80", "-u", "web", "-g", "web", "-n", "4096", "-h", "0.0.0.0", "-l", "-d", "/var/www/html"]
|