From 5848911f067e4f2a330d3571656eda900369faa9 Mon Sep 17 00:00:00 2001 From: Dawid Date: Fri, 9 Apr 2021 00:00:40 +0200 Subject: [PATCH] update docker --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index c3edd8a..6bd69ba 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,13 +1,13 @@ FROM ubuntu:latest -COPY requirements.txt ./ - RUN apt-get update RUN apt-get install -y python3-pip -RUN pip3 install -r ./requirements.txt WORKDIR /app COPY ./stats.py ./ +COPY requirements.txt ./ + +RUN pip3 install -r ./requirements.txt CMD python3 stats.py \ No newline at end of file