From ef634cc7f71fcd7dce0a0444693ab66131256700 Mon Sep 17 00:00:00 2001 From: Pierre Bastianelli Date: Fri, 31 May 2024 09:43:59 -0700 Subject: [PATCH] chore: dockerfile and asdf versions --- .tool-versions | 8 ++++---- app/Dockerfile | 4 ++-- schema/Dockerfile | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.tool-versions b/.tool-versions index c6667c4101..5dc3253cd2 100644 --- a/.tool-versions +++ b/.tool-versions @@ -1,5 +1,5 @@ -nodejs 20.11.0 -yarn 1.22.19 +nodejs 20.14.0 +yarn 1.22.22 postgres 14.0 -python 3.9.11 -golang 1.16 +python 3.9.19 +golang 1.22 diff --git a/app/Dockerfile b/app/Dockerfile index 09cca410d3..218699cd22 100644 --- a/app/Dockerfile +++ b/app/Dockerfile @@ -1,4 +1,4 @@ -FROM debian:11 +FROM debian:12 RUN apt-get update && \ apt-get install -y git gnupg curl && \ @@ -11,7 +11,7 @@ WORKDIR ${HOME} COPY app/ ${HOME}/ -RUN git clone https://github.com/asdf-vm/asdf.git ${HOME}/asdf --depth 1 --branch v0.11.2 +RUN git clone https://github.com/asdf-vm/asdf.git ${HOME}/asdf --depth 1 --branch v0.14.0 ENV BASH_ENV="${HOME}/asdf/asdf.sh" # Because asdf is loaded via BASH_ENV, all commands using adsf need to be executed using /usr/bin/env bash -c diff --git a/schema/Dockerfile b/schema/Dockerfile index 8f1a753524..fdc269b0a7 100644 --- a/schema/Dockerfile +++ b/schema/Dockerfile @@ -1,5 +1,5 @@ # Docker build should be run from parent directory -FROM perl:5.34 +FROM perl:5.38 ENV USER_ID=1001 ENV HOME=/root