Skip to content

Commit a93c4be

Browse files
authored
fix: revert to Debian 11 (#11)
1 parent 231e36e commit a93c4be

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# syntax=docker/dockerfile:1
22
ARG PYTHON_VERSION=3.8
3-
FROM python:$PYTHON_VERSION-slim
3+
FROM python:$PYTHON_VERSION-slim-bullseye
44

55
# Install wget.
66
RUN apt-get update && \
@@ -19,7 +19,7 @@ ENV LD_LIBRARY_PATH=/opt/conda/lib:$LD_LIBRARY_PATH
1919
# Install CUDA and cuDNN.
2020
ARG CUDA_VERSION=11.8
2121
ARG CUDNN_VERSION=8.8
22-
RUN conda install --name base conda-libmamba-solver && \
22+
RUN conda install --name base --yes conda-libmamba-solver && \
2323
conda config --set solver libmamba && \
2424
conda install --name base --channel conda-forge --yes cudatoolkit="$CUDA_VERSION" cudnn="$CUDNN_VERSION" && \
2525
conda clean --all --force-pkgs-dirs --yes

0 commit comments

Comments
 (0)