fix(devcontainer): ensure pip is installed in the devcontainer
this is being done because Red-DiscordBot requires pip to be installed to function, but does not declare it as a dependency. this is only a problem when uv is being used to install dependencies in an environment where pip is not present. so, we ensure pip is present!
This commit is contained in:
parent
bf907ac0e1
commit
cbd4f6dfcc
1 changed files with 2 additions and 1 deletions
|
@ -31,4 +31,5 @@ COPY --from=uv --chown=vscode: /uv /uvx /bin/
|
|||
COPY --from=python --chown=vscode: /usr/local /usr/local
|
||||
|
||||
RUN ln -s /usr/local/bin/python3.11 /usr/local/bin/python; \
|
||||
python --version
|
||||
python --version; \
|
||||
python -m ensurepip
|
||||
|
|
Loading…
Add table
Reference in a new issue