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
Split from #599
conda-store, which does an editable install:
conda-store/conda-store/Dockerfile
Lines 22 to 23 in 64552a2 RUN cd /opt/conda-store && \ pip install -e .
❗️this is also the file used during releases which should not be the case
To fix this, refactor conda-store/Dockerfile to have 2 different build targets.
conda-store/Dockerfile
dev
release
.github/workflows/build_docker_image.yaml
N/A
No response
The text was updated successfully, but these errors were encountered:
I am working on this one.
Sorry, something went wrong.
dcmcand
Successfully merging a pull request may close this issue.
Describe the bug
Split from #599
conda-store, which does an editable install:
conda-store/conda-store/Dockerfile
Lines 22 to 23 in 64552a2
RUN cd /opt/conda-store && \
pip install -e .
❗️this is also the file used during releases which should not be the case
Expected behavior
To fix this, refactor
conda-store/Dockerfile
to have 2 different build targets.dev
target should install dependencies in editable mode as the the current file doesrelease
target should not install dependencies in editable mode.github/workflows/build_docker_image.yaml
workflow should be changed to use therelease
targetHow to Reproduce the problem?
N/A
Output
No response
Versions and dependencies used.
No response
Anything else?
No response
The text was updated successfully, but these errors were encountered: