aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
blob: 423b259d7b5868020d113c16547b8ae198aee883 (plain)
1
2
3
4
5
6
7
8
9
10
11
FROM ubuntu:22.04
ARG DEBIAN_FRONTEND=noninteractive
ENV TZ=Europe/London
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
RUN apt-get update -y
RUN apt-get install -y python3-pip  build-essential tzdata
COPY . /app
WORKDIR /app
RUN pip3 install -r requirements.txt
ENTRYPOINT ["python3"]
CMD ["subreddit.py"]