aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
authorjwansek <eddie.atten.ea29@gmail.com>2022-02-25 20:58:06 +0000
committerjwansek <eddie.atten.ea29@gmail.com>2022-02-25 20:58:06 +0000
commitb277af9cb84c7f42c088f17ed0036bda6aeacdf4 (patch)
treefbff39db45995a063cd3565d149661f0e5ec3cd6 /Dockerfile
parent0c284f018029b102c536068689248fa6e8c0d424 (diff)
downloadReverseSSHTunnel-b277af9cb84c7f42c088f17ed0036bda6aeacdf4.tar.gz
ReverseSSHTunnel-b277af9cb84c7f42c088f17ed0036bda6aeacdf4.zip
added dockerfiles
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile8
1 files changed, 8 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 0000000..adeea16
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,8 @@
+FROM ubuntu:latest
+MAINTAINER Eden Attenborough "eddie.atten.ea29@gmail.com"
+RUN apt-get update -y
+RUN apt-get install -y autossh python3-pip python-dev build-essential
+COPY . /app
+WORKDIR /app
+ENTRYPOINT ["python3"]
+CMD ["tunnel.py"]