Skip to content

Commit

Permalink
Adding Python to PATH (#6)
Browse files Browse the repository at this point in the history
* WORKDIR /background_subtraction
* Added /opt/conda/bin to PATH
  • Loading branch information
kbestak authored Nov 3, 2022
1 parent 6368dbd commit ee74d99
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@ FROM mambaorg/micromamba:0.26.0
COPY --chown=$MAMBA_USER:$MAMBA_USER environment.yml /tmp/env.yaml
RUN micromamba install -y -n base -f /tmp/env.yaml && \
micromamba clean --all --yes
# WORKDIR /background_subtraction
ENV PATH="${PATH}:/opt/conda/bin"
WORKDIR /background_subtraction
COPY . .

0 comments on commit ee74d99

Please sign in to comment.