Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .tool-versions
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This file is for you! Please, updated to the versions agreed by your team.

pre-commit 3.6.0
gitleaks 8.18.4
pre-commit 4.5.1
gitleaks 8.30.1

# ==============================================================================
# The section below is reserved for Docker image versions.
Expand Down
11 changes: 6 additions & 5 deletions infrastructure/images/build-container/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
FROM mcr.microsoft.com/vscode/devcontainers/base:alpine-3.22 AS pathology-build-container
FROM mcr.microsoft.com/devcontainers/base:alpine3.23 AS pathology-build-container

ENV PYTHON_VERSION="3.14"

ENV ASDF_DOWNLOAD_URL="https://github.com/asdf-vm/asdf/releases/download/v0.18.0"
ENV EDITORCONFIG_DOWNLOAD_URL="https://github.com/editorconfig-checker/editorconfig-checker/releases/download/v3.4.1"
ENV ASDF_DOWNLOAD_URL="https://github.com/asdf-vm/asdf/releases/download/v0.18.1"
ENV EDITORCONFIG_DOWNLOAD_URL="https://github.com/editorconfig-checker/editorconfig-checker/releases/download/v3.6.1"


ARG INCLUDE_DEV_CERTS
ARG DEV_CERT_FILENAME
Expand Down Expand Up @@ -87,10 +88,10 @@ WORKDIR /asdf
# If we're running on an arm64 architecture download the arm64 executeable.
RUN if [ "$(uname -m)" = "aarch64" ] ; then \
echo "Installing ARM asdf executable..." ; \
wget -O asdf.tar.gz "$ASDF_DOWNLOAD_URL/asdf-v0.18.0-linux-arm64.tar.gz"; \
wget -O asdf.tar.gz "$ASDF_DOWNLOAD_URL/asdf-v0.18.1-linux-arm64.tar.gz"; \
else \
echo "Installing x86 asdf executable..." ; \
wget -O asdf.tar.gz "$ASDF_DOWNLOAD_URL/asdf-v0.18.0-linux-amd64.tar.gz"; \
wget -O asdf.tar.gz "$ASDF_DOWNLOAD_URL/asdf-v0.18.1-linux-amd64.tar.gz"; \
fi \

&& tar -xvf asdf.tar.gz \
Expand Down
Loading