Skip to content

Commit 1d7c957

Browse files
authored
Update devcontainer (#7017)
* Update dev container on release and schedule * Use latest version of upstream dev container image * Remove pre-commit cache hack * Add Jupyter extension to container
1 parent 305eb39 commit 1d7c957

File tree

3 files changed

+7
-12
lines changed

3 files changed

+7
-12
lines changed

.github/workflows/devcontainer-docker-image.yml

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@ name: devcontainer-docker-image
22

33
on:
44
workflow_dispatch:
5+
schedule:
6+
- cron: "48 19 * * 5" # Fridays at 19:48 UTC
7+
release:
8+
types: [published]
59

610
env:
711
REGISTRY: ghcr.io

.gitpod.yml

+1
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ vscode:
3636
- eamodio.gitlens
3737
- ms-python.python
3838
- ms-pyright.pyright
39+
- ms-toolsai.jupyter
3940
- donjayamanne.githistory
4041

4142
github:

scripts/dev.Dockerfile

+2-12
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ghcr.io/mamba-org/micromamba-devcontainer:git-e04d158
1+
FROM ghcr.io/mamba-org/micromamba-devcontainer:latest
22

33
COPY --chown=${MAMBA_USER}:${MAMBA_USER} conda-envs/environment-dev.yml /tmp/environment-dev.yml
44
RUN : \
@@ -8,15 +8,5 @@ RUN : \
88
&& sudo chmod -R a+rwx /opt/conda \
99
;
1010

11+
# Run subsequent commands in an activated Conda environment
1112
ARG MAMBA_DOCKERFILE_ACTIVATE=1
12-
13-
ENV PRE_COMMIT_HOME=/opt/.pre-commit-cache-prebuilt
14-
COPY --chown=${MAMBA_USER}:${MAMBA_USER} .pre-commit-config.yaml /fake-repo/.pre-commit-config.yaml
15-
RUN : \
16-
&& sudo mkdir --mode=777 /opt/.pre-commit-cache-prebuilt \
17-
&& cd /fake-repo \
18-
&& git init \
19-
&& pre-commit install-hooks \
20-
&& sudo rm -rf /fake-repo \
21-
&& sudo chmod -R a+rwx /opt/.pre-commit-cache-prebuilt \
22-
;

0 commit comments

Comments
 (0)