Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,11 @@ ENV PYTHONUNBUFFERED=1 \

# Install apt dependencies
COPY .devcontainer/dependencies-apt.txt /tmp/
RUN apt-get update \
# The base image ships a yarn apt source whose signing key periodically expires
# upstream (yarnpkg/yarn#9222), which breaks `apt-get update`. We don't use yarn,
# so drop that source to keep builds reproducible for everyone.
RUN rm -f /etc/apt/sources.list.d/yarn.list \
&& apt-get update \
&& apt-get install -y --no-install-recommends \
$(awk -F: '/^[^#]/ { print $1 }' /tmp/dependencies-apt.txt | uniq) \
&& rm -rf /var/lib/apt/lists/* && apt-get clean
Expand Down
2 changes: 1 addition & 1 deletion .devcontainer/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
python_version=3.11-bullseye
registry=idscfrazz
image_name=pdm4ar2025
image_name=pdm4ar2026
dockerfile=Dockerfile

platforms=linux/amd64,linux/arm64
Expand Down
6 changes: 3 additions & 3 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.241.1/containers/python-3
{
"name": "pdm4ar2025",
"image": "idscfrazz/pdm4ar2025:3.11-bullseye",
"name": "pdm4ar2026",
"image": "idscfrazz/pdm4ar2026:3.11-bullseye",
// Configure tool-specific properties.
"customizations": {
// Configure properties specific to VS Code.
Expand Down Expand Up @@ -51,7 +51,7 @@
"MPLBACKEND": "agg"
},
// Use 'postCreateCommand' to run commands after the container is created.
"postCreateCommand": "poetry lock && poetry install",
"postCreateCommand": "poetry lock --no-update && poetry install",
// Comment out to connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
"remoteUser": "vscode",
"features": {
Expand Down
Loading