ssh-treasure-hunt/Dockerfile

30 lines
467 B
Docker
Raw Normal View History

2022-01-18 18:02:41 +00:00
FROM debian:10
2022-01-18 19:03:06 +00:00
WORKDIR /root
2022-01-18 18:02:41 +00:00
RUN addgroup eleve
RUN apt-get update && apt-get install -y \
2022-01-20 12:50:31 +00:00
nano \
netcat \
nginx \
2022-01-18 18:02:41 +00:00
ssh \
2022-01-20 12:50:31 +00:00
vim \
2022-01-18 18:02:41 +00:00
&& rm -rf /var/lib/apt/lists/*
ENV TZ=Europe/Paris
#CMD ["sh", "-c", "echo lol"]
# SSH server
RUN mkdir /run/sshd
2022-01-20 17:03:05 +00:00
CMD ["netcat", "-lp", "5000", "-e", "/root/http/http_bash.sh"]
# Nginx conf
COPY ./default /etc/nginx/sites-enabled/default
2022-01-18 18:02:41 +00:00
# Entrypoint
COPY ./entrypoint.sh ./entrypoint.sh
ENTRYPOINT ["./entrypoint.sh"]