diff options
Diffstat (limited to 'iv/oc_challs/ov/Dockerfile')
-rw-r--r-- | iv/oc_challs/ov/Dockerfile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/iv/oc_challs/ov/Dockerfile b/iv/oc_challs/ov/Dockerfile new file mode 100644 index 0000000..4ba2b06 --- /dev/null +++ b/iv/oc_challs/ov/Dockerfile @@ -0,0 +1,13 @@ +FROM debian:latest
+
+MAINTAINER anton@sijanec.eu
+
+EXPOSE 6844/tcp
+
+WORKDIR /app
+
+RUN apt-get update && apt-get install --no-install-recommends -y php-cli nasm python3 make socat && apt-get clean
+
+COPY ./ /app
+
+CMD ["make", "run" ]
|