Skip to content

Commit fe02d4d

Browse files
committed
Go back to bullseye.
1 parent 974e42c commit fe02d4d

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ COMPOSE_PROJECT_NAME='metacall'
2323
# Configure default variables
2424
METACALL_PATH=/usr/local/metacall
2525
METACALL_BUILD_TYPE=relwithdebinfo
26-
METACALL_BASE_IMAGE=debian:bookworm-slim
26+
METACALL_BASE_IMAGE=debian:bullseye-slim # debian:bookworm-slim

tools/metacall-runtime.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ sub_apt(){
7777
sub_python(){
7878
echo "configure python"
7979
cd $ROOT_DIR
80-
sub_apt_install_hold python3 libpython3.11
80+
sub_apt_install_hold python3 libpython3.9 # libpython3.11
8181
}
8282

8383
# Ruby
@@ -86,7 +86,7 @@ sub_ruby(){
8686
cd $ROOT_DIR
8787

8888
$SUDO_CMD apt-get update
89-
sub_apt_install_hold ruby3.1 libruby3.1
89+
sub_apt_install_hold ruby2.7 libruby2.7 # ruby3.1 libruby3.1
9090
}
9191

9292
# NetCore
@@ -163,7 +163,7 @@ sub_nodejs(){
163163
echo "configure node"
164164

165165
# Install NodeJS library
166-
sub_apt_install_hold libnode108
166+
sub_apt_install_hold libnode72 # libnode108
167167
}
168168

169169
# TypeScript

tools/runtime/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ COPY --from=builder /usr/local/lib/plugins /usr/local/lib/plugins
9191
COPY --from=builder /usr/local/lib/node_modules/ /usr/local/lib/node_modules/
9292

9393
# Copy python dependencies (and port) from builder
94-
COPY --from=builder /usr/local/lib/python3.11/dist-packages/metacall/ /usr/local/lib/python3.11/dist-packages/metacall/
94+
COPY --from=builder /usr/local/lib/python3.9/dist-packages/metacall/ /usr/local/lib/python3.9/dist-packages/metacall/
9595

9696
# Copy headers from builder
9797
COPY --from=builder /usr/local/include/metacall /usr/local/include/metacall

0 commit comments

Comments
 (0)