We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d233d6 commit 6bf462dCopy full SHA for 6bf462d
Dockerfile
@@ -8,13 +8,15 @@ WORKDIR /app
8
RUN apk add curl \
9
&& python3 -m venv $VIRTUAL_ENV \
10
&& pip install --upgrade pip \
11
- && pip3 install poetry
+ && pip install poetry --no-cache-dir
12
13
COPY . /app/
14
15
-RUN poetry install --no-root --only main
+RUN poetry install --no-root --only main \
16
+ && poetry cache clear --all .
17
18
19
FROM sentinela AS sentinela_dev
20
-RUN poetry install --no-root
21
+RUN poetry install --no-root \
22
0 commit comments