Skip to content

Commit 88c0856

Browse files
fix Dev Container configuration
1 parent 14ef1cd commit 88c0856

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.devcontainer/docker-compose.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ services:
77
# docker-compose.yml file (the first in the devcontainer.json "dockerComposeFile"
88
# array). The sample below assumes your primary file is in the root of your project.
99
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}
1111
build:
1212
context: .
13-
dockerfile: .devcontainer/Dockerfile
13+
dockerfile: Dockerfile
1414
args:
1515
- PY_VER=${PY_VER:-3.11}
16-
- DISTRO=${DISTRO:-buster}
16+
- DISTRO=${DISTRO:-bookworm}
1717

1818
volumes:
1919
# Update this to wherever you want VS Code to mount the folder of your project

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ ARG IMAGE=mambaorg/micromamba:1.5-bookworm-slim
22
FROM ${IMAGE}
33

44
ARG CONDA_BIN=micromamba
5-
ARG PY_VER=3.9
5+
ARG PY_VER=3.11
66
ARG HOST_UID=1000
77

88
RUN ${CONDA_BIN} install --no-pin -qq -y -n base -c conda-forge \

0 commit comments

Comments
 (0)