Skip to content
This repository was archived by the owner on Nov 30, 2023. It is now read-only.

Commit 92a4e63

Browse files
committed
Fix requirements.txt install in python3 devcontainer
1 parent 22cfcd6 commit 92a4e63

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

containers/python-3/.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ RUN apt-get install -y libicu[0-9][0-9]
1616

1717
# Install Python dependencies from requirements.txt if it exists
1818
COPY .devcontainer/requirements.txt.temp requirements.txt* /workspace/
19-
RUN if [ -f "requirements.txt" ]; then pip install -r requirements.txt && rm requirements.txt; fi
19+
RUN if [ -f "requirements.txt" ]; then pip install -r requirements.txt && rm requirements.txt*; fi
2020

2121
# Expose port 5000 as the default web port
2222
EXPOSE 5000

0 commit comments

Comments
 (0)