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

Commit fd61bd5

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

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

containers/python-3/.devcontainer/Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ RUN apt-get update && apt-get -y install git procps
1414
# Install any missing dependencies for enhanced language service
1515
RUN apt-get install -y libicu[0-9][0-9]
1616

17+
RUN mkdir /workspace
18+
WORKDIR /workspace
19+
1720
# Install Python dependencies from requirements.txt if it exists
1821
COPY .devcontainer/requirements.txt.temp requirements.txt* /workspace/
1922
RUN if [ -f "requirements.txt" ]; then pip install -r requirements.txt && rm requirements.txt*; fi

0 commit comments

Comments
 (0)