We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f34b35 commit a6a980aCopy full SHA for a6a980a
1 file changed
docker/docs/Dockerfile
@@ -1,14 +1,14 @@
1
-FROM --platform=linux/amd64 python:3.10.5
+FROM python:3.10.5
2
3
# SET WORKING DIRECTORY
4
WORKDIR /app_code
5
6
# Update pip
7
-RUN pip install --upgrade pip
+RUN pip install --upgrade --no-cache-dir pip
8
9
# Copy application code into a directory called 'app_code'
10
# This copy includes pyproject.toml and poetry.lock
11
COPY ./documentation /app_code
12
13
# Installing requirements
14
-RUN pip install -r /app_code/requirements.txt
+RUN pip install --no-cache-dir -r /app_code/requirements.txt
0 commit comments