File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -23,4 +23,4 @@ COMPOSE_PROJECT_NAME='metacall'
2323# Configure default variables
2424METACALL_PATH = /usr/local/metacall
2525METACALL_BUILD_TYPE = relwithdebinfo
26- METACALL_BASE_IMAGE = debian:bookworm-slim
26+ METACALL_BASE_IMAGE = debian:bullseye-slim # debian: bookworm-slim
Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ sub_apt(){
7777sub_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
Original file line number Diff line number Diff line change @@ -91,7 +91,7 @@ COPY --from=builder /usr/local/lib/plugins /usr/local/lib/plugins
9191COPY --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
9797COPY --from=builder /usr/local/include/metacall /usr/local/include/metacall
You can’t perform that action at this time.
0 commit comments