File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -7,13 +7,13 @@ services:
7
7
# docker-compose.yml file (the first in the devcontainer.json "dockerComposeFile"
8
8
# array). The sample below assumes your primary file is in the root of your project.
9
9
container_name : datajoint-python-devcontainer
10
- image : datajoint/datajoint-python-devcontainer:${PY_VER:-3.11}-${DISTRO:-buster }
10
+ image : datajoint/datajoint-python-devcontainer:${PY_VER:-3.11}-${DISTRO:-bookworm }
11
11
build :
12
12
context : .
13
- dockerfile : .devcontainer/ Dockerfile
13
+ dockerfile : Dockerfile
14
14
args :
15
15
- PY_VER=${PY_VER:-3.11}
16
- - DISTRO=${DISTRO:-buster }
16
+ - DISTRO=${DISTRO:-bookworm }
17
17
18
18
volumes :
19
19
# Update this to wherever you want VS Code to mount the folder of your project
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ ARG IMAGE=mambaorg/micromamba:1.5-bookworm-slim
2
2
FROM ${IMAGE}
3
3
4
4
ARG CONDA_BIN=micromamba
5
- ARG PY_VER=3.9
5
+ ARG PY_VER=3.11
6
6
ARG HOST_UID=1000
7
7
8
8
RUN ${CONDA_BIN} install --no-pin -qq -y -n base -c conda-forge \
You can’t perform that action at this time.
0 commit comments