Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions challenge/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# sudo docker build -t system_health_check .
# sudo docker run -d -p 1024:1024 --rm -it system_health_check

FROM ubuntu:19.10
FROM ubuntu:22.04

RUN apt-get update

Expand All @@ -14,7 +14,7 @@ COPY system_health_check .
COPY flag .
COPY ynetd .

RUN chown -R root:root /home/ctf
RUN chown -R ctf:ctf /home/ctf

USER ctf
EXPOSE 1024
Expand Down