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