This repository has been archived on 2024-07-11. You can view files and clone it, but cannot push or open issues or pull requests.
nav/Dockerfile

12 lines
145 B
Docker
Raw Normal View History

2022-11-03 17:02:36 +08:00
FROM busybox
LABEL maintainer="Jeroen Pardon"
WORKDIR /opt/html
COPY . /opt/html
EXPOSE 80
ENTRYPOINT [ "httpd", "-f", "-v", "-u", "1000" ]