Skip to content

Commit

Permalink
Minor bugfix in Dockerfile (old paths)
Browse files Browse the repository at this point in the history
  • Loading branch information
jsilter committed Feb 28, 2024
1 parent 8c36c48 commit ecfc980
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ USER $APPUSER
WORKDIR $HOME

ENV ENV_NAME="diffdock"
ENV DIR_NAME="ligbind"
ENV DIR_NAME="DiffDock"

# Install micromamba
RUN curl -Ls https://micro.mamba.pm/api/micromamba/linux-64/latest | tar -xj bin/micromamba
Expand All @@ -23,7 +23,7 @@ COPY --chown=$APPUSER:$APPUSER ./$ENV_FILE_NAME .
RUN ~/bin/micromamba env create --file $ENV_FILE_NAME && ~/bin/micromamba clean -afy --quiet

# Copy application code
COPY --chown=$APPUSER:$APPUSER cuda-ubuntu22.04 $HOME/$DIR_NAME
COPY --chown=$APPUSER:$APPUSER . $HOME/$DIR_NAME

# Download models
# These should download automatically on first inference
Expand All @@ -43,7 +43,7 @@ USER $APPUSER
WORKDIR $HOME

ENV ENV_NAME="diffdock"
ENV DIR_NAME="ligbind"
ENV DIR_NAME="DiffDock"

# Copy the Conda environment and application code from the builder stage
COPY --from=builder --chown=$APPUSER:$APPUSER $HOME/micromamba $HOME/micromamba
Expand Down

0 comments on commit ecfc980

Please sign in to comment.