We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Description Users cannot build a container with the .devcontainer
Steps to Reproduce Steps to reproduce the behavior:
Expected behavior A container is built and you have the tools you need to develop
Actual behavior The container fails to build, erroring out at this block: https://github.com/Azure/missionlz/blob/main/.devcontainer/Dockerfile#L28-L33
The text was updated successfully, but these errors were encountered:
Until we get a fix checked in, a workaround is to edit the Dockerfile to remove the line that creates a symbolic link for pip.
Dockerfile
pip
# Install Python 3 RUN apt-get update \ && apt-get install -y \ python3 \ python3-pip \ && ln -s /usr/bin/python3 /usr/bin/python # && ln -s /usr/bin/pip3 /usr/bin/pip --this line is removed because it causes a build error
Sorry, something went wrong.
sstjean
Successfully merging a pull request may close this issue.
Description
Users cannot build a container with the .devcontainer
Steps to Reproduce
Steps to reproduce the behavior:
Expected behavior
A container is built and you have the tools you need to develop
Actual behavior
The container fails to build, erroring out at this block: https://github.com/Azure/missionlz/blob/main/.devcontainer/Dockerfile#L28-L33
The text was updated successfully, but these errors were encountered: