From b5b95c124fd0f43c499326296a00365c49f70142 Mon Sep 17 00:00:00 2001 From: GoNzCiD Date: Sun, 19 Jul 2020 04:08:14 +0200 Subject: [PATCH] fix install order for alpine --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index cf0f909..de12239 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,6 +8,6 @@ COPY run.py /app WORKDIR /app -RUN apt install -y chromium-chromedriver && pip install -r requirements.txt +RUN apk add -y chromium-chromedriver && pip install -r requirements.txt CMD ["python", "run.py"] \ No newline at end of file