Skip to content

Commit c460eef

Browse files
Use pip install with --no-cache-dir in the Dockerfile (#89)
This will help minimize the Docker image size a bit.
1 parent 037a23a commit c460eef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ COPY LICENSE \
77
requirements.txt \
88
/code/
99

10-
RUN pip install -r /code/requirements.txt
10+
RUN pip install --no-cache-dir -r /code/requirements.txt
1111

1212
ENTRYPOINT ["/code/entrypoint.sh"]
1313
CMD []

0 commit comments

Comments
 (0)