Skip to content

Commit

Permalink
Go back to bullseye.
Browse files Browse the repository at this point in the history
  • Loading branch information
viferga committed Feb 7, 2023
1 parent 974e42c commit fe02d4d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .env
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ COMPOSE_PROJECT_NAME='metacall'
# Configure default variables
METACALL_PATH=/usr/local/metacall
METACALL_BUILD_TYPE=relwithdebinfo
METACALL_BASE_IMAGE=debian:bookworm-slim
METACALL_BASE_IMAGE=debian:bullseye-slim # debian:bookworm-slim
6 changes: 3 additions & 3 deletions tools/metacall-runtime.sh
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ sub_apt(){
sub_python(){
echo "configure python"
cd $ROOT_DIR
sub_apt_install_hold python3 libpython3.11
sub_apt_install_hold python3 libpython3.9 # libpython3.11
}

# Ruby
Expand All @@ -86,7 +86,7 @@ sub_ruby(){
cd $ROOT_DIR

$SUDO_CMD apt-get update
sub_apt_install_hold ruby3.1 libruby3.1
sub_apt_install_hold ruby2.7 libruby2.7 # ruby3.1 libruby3.1
}

# NetCore
Expand Down Expand Up @@ -163,7 +163,7 @@ sub_nodejs(){
echo "configure node"

# Install NodeJS library
sub_apt_install_hold libnode108
sub_apt_install_hold libnode72 # libnode108
}

# TypeScript
Expand Down
2 changes: 1 addition & 1 deletion tools/runtime/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ COPY --from=builder /usr/local/lib/plugins /usr/local/lib/plugins
COPY --from=builder /usr/local/lib/node_modules/ /usr/local/lib/node_modules/

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

# Copy headers from builder
COPY --from=builder /usr/local/include/metacall /usr/local/include/metacall
Expand Down

0 comments on commit fe02d4d

Please sign in to comment.