d97b628b3c
Example how to run: ``` docker run \ -d \ -p 4000:80 \ --cap-add=setuid \ sui ``` Busybox has an httpd function, and this brings the size down greatly. :)
11 lines
145 B
Docker
Executable file
11 lines
145 B
Docker
Executable file
FROM busybox
|
|
|
|
LABEL maintainer="Jeroen Pardon"
|
|
|
|
WORKDIR /opt/html
|
|
|
|
COPY . /opt/html
|
|
|
|
EXPOSE 80
|
|
|
|
ENTRYPOINT [ "httpd", "-f", "-v", "-u", "1000" ]
|