aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
blob: adeea169320b830a90b6df0cfb5f89512c5e521c (plain)
1
2
3
4
5
6
7
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"]