Hephaestus/Dockerfile

11 lines
257 B
Docker
Raw Normal View History

2023-07-16 22:27:57 +01:00
FROM lscr.io/linuxserver/openssh-server:latest
2023-07-16 18:51:21 +01:00
2023-07-16 22:27:57 +01:00
ENV USER_NAME=git
2023-07-17 00:10:35 +01:00
RUN apk add --no-cache --upgrade git lighttpd tor cgit highlight git-daemon
2023-07-16 18:51:21 +01:00
2023-07-16 22:27:57 +01:00
COPY /root/ /
CMD ["/bin/bash", "/usr/local/bin/run-tor.sh"]#["tor", "--runasdaemon", "0"]
2023-07-16 18:51:21 +01:00
ENTRYPOINT ["/init"]