ium_434804/Dockerfile

13 lines
194 B
Docker
Raw Normal View History

2021-04-08 21:58:41 +02:00
FROM ubuntu:latest
COPY requirements.txt ./
RUN apt-get update
RUN apt-get install -y python3-pip
2021-04-08 22:55:18 +02:00
RUN pip3 install -r ./requirements.txt
2021-04-08 21:58:41 +02:00
WORKDIR /app
COPY ./stats.py ./
CMD python3 stats.py