Skip to content

Commit ced61c0

Browse files
Autoconf shell requirements fix (#19)
1 parent 32e5a43 commit ced61c0

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

autoconf/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ ARG AUTOCONF_ARCHIVE_VERSION="2023.02.20"
55
ARG AUTOMAKE_VERSION="1.16.5"
66

77
LABEL org.opencontainers.image.source="https://github.com/python/cpython-devcontainers"
8-
LABEL org.opencontainers.image.base.name="docker.io/library/alpine:3.19"
8+
LABEL org.opencontainers.image.base.name="docker.io/library/ubuntu:22.04"
99
LABEL org.opencontainers.image.authors="Donghee Na"
1010
LABEL org.opencontainers.image.title="GNU Autoconf ${AUTOCONF_VERSION} container for CPython"
1111
LABEL org.opencontainers.image.description="Container image with GNU Autoconf ${AUTOCONF_VERSION}, GNU Automake ${AUTOMAKE_VERSION}, and autoconf-archive ${AUTOCONF_ARCHIVE_VERSION} for generating CPython's configure script."

autoconf/entry.sh

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
#!/bin/sh
22
set -e
33

4+
export CONFIG_SHELL="/usr/bin/bash"
5+
46
BIN=/usr/local/bin
57
AUTOCONF=$BIN/autoconf
68
AUTORECONF=$BIN/autoreconf

0 commit comments

Comments
 (0)