aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
blob: d8a1fc3203e74fa60c4d988a9213b390220f4f3b (plain)
1
2
3
4
5
6
7
8
9
FROM ubuntu:latest
MAINTAINER Eden Attenborough "eddie.atten.ea29@gmail.com"
RUN apt-get update -y
RUN apt-get install -y python3-pip python-dev build-essential
COPY . /app
WORKDIR /app
RUN pip3 install -r requirements.txt
ENTRYPOINT ["python3"]
CMD ["runprog.py"]