diff options
Diffstat (limited to 'bot/Dockerfile')
-rw-r--r-- | bot/Dockerfile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bot/Dockerfile b/bot/Dockerfile index 6e97ed6..33c14fb 100644 --- a/bot/Dockerfile +++ b/bot/Dockerfile | |||
@@ -3,7 +3,8 @@ FROM python:3.10 | |||
3 | WORKDIR /usr/src/app | 3 | WORKDIR /usr/src/app |
4 | 4 | ||
5 | COPY requirements.txt ./ | 5 | COPY requirements.txt ./ |
6 | RUN pip install --no-cache-dir -r requirements.txt | 6 | |
7 | RUN apt-get update && apt-get install exiftool && pip install --no-cache-dir -r requirements.txt | ||
7 | 8 | ||
8 | COPY . . | 9 | COPY . . |
9 | 10 | ||