aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'bot/Dockerfile')
-rw-r--r--bot/Dockerfile3
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
3WORKDIR /usr/src/app 3WORKDIR /usr/src/app
4 4
5COPY requirements.txt ./ 5COPY requirements.txt ./
6RUN pip install --no-cache-dir -r requirements.txt 6
7RUN apt-get update && apt-get install exiftool && pip install --no-cache-dir -r requirements.txt
7 8
8COPY . . 9COPY . .
9 10
Powered by cgit v1.2.3 (git 2.41.0)