Skip to content

Commit

Permalink
ci: fix dockerfile conda channel
Browse files Browse the repository at this point in the history
  • Loading branch information
Tohrusky committed Dec 4, 2024
1 parent dcb66b0 commit 49281a0
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 0 deletions.
3 changes: 3 additions & 0 deletions vs-playground.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ ARG BASE_CONTAINER_TAG=cuda

FROM lychee0/vs-pytorch:${BASE_CONTAINER_TAG}

# prepare environment
RUN apt update -y && apt upgrade -y

WORKDIR /video

# Install Jupyter
Expand Down
4 changes: 4 additions & 0 deletions vs-pytorch-rocm.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,12 @@ ENV CONDARC_PATH /opt/conda/.condarc
ENV CONDARC $CONDARC_PATH
ENV PYTHONUNBUFFERED 1

RUN conda config --add channels conda-forge
RUN conda install conda-forge::conda-libmamba-solver conda-forge::libmamba conda-forge::libmambapy conda-forge::libarchive --force -y

# install FFmpeg
RUN conda install conda-forge::ffmpeg=7.0.2 -y

# install vapoursynth
RUN conda install conda-forge::vapoursynth=69 -y

Expand Down
4 changes: 4 additions & 0 deletions vs-pytorch.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,12 @@ ENV CONDARC_PATH /opt/conda/.condarc
ENV CONDARC $CONDARC_PATH
ENV PYTHONUNBUFFERED 1

RUN conda config --add channels conda-forge
RUN conda install conda-forge::conda-libmamba-solver conda-forge::libmamba conda-forge::libmambapy conda-forge::libarchive --force -y

# install FFmpeg
RUN conda install conda-forge::ffmpeg=7.0.2 -y

# install vapoursynth
RUN conda install conda-forge::vapoursynth=69 -y

Expand Down

0 comments on commit 49281a0

Please sign in to comment.