From 9d3e6b744bb4767e39b0cd69f81d0fc3babb70f0 Mon Sep 17 00:00:00 2001 From: Erik Sundell Date: Sun, 24 Mar 2024 22:13:42 +0100 Subject: [PATCH] Dockerfile: update alpine from 3.17 to 3.18, and Python 3.10 to 3.11 This seems to resolve https://github.com/jupyterhub/repo2docker-action/issues/113 which seem to stem from an issue in alpine:3.17 that has arisen - maybe it will get fixed over time - but I think this could also do the trick. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 0cffcd18..db699f2f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # syntax = docker/dockerfile:1.3 -ARG ALPINE_VERSION=3.17 +ARG ALPINE_VERSION=3.18 FROM alpine:${ALPINE_VERSION} RUN apk add --no-cache git python3 python3-dev py3-pip py3-setuptools build-base