@@ -3,7 +3,7 @@ ARG rust_version=1.46
33
44# This image could be replaced with an "indy" image from another repo,
55# such as the indy-sdk
6- FROM rust:${rust_version}-slim-buster as indy-builder
6+ FROM rust:${rust_version}-slim as indy-builder
77
88ARG user=indy
99ENV HOME="/home/$user"
@@ -80,7 +80,7 @@ RUN rm -rf indy-sdk indy-postgres
8080# Indy Base Image
8181# This image could be replaced with an "indy-python" image from another repo,
8282# such as the indy-sdk
83- FROM python:${python_version}-slim-buster as indy-base
83+ FROM python:${python_version}-slim-bullseye as indy-base
8484
8585ARG uid=1001
8686ARG user=indy
@@ -97,7 +97,7 @@ ENV HOME="/home/$user" \
9797 SHELL=/bin/bash \
9898 SUMMARY="indy-python base image" \
9999 DESCRIPTION="aries-cloudagent provides a base image for running Hyperledger Aries agents in Docker. \
100- This image provides all the necessary dependencies to use the indy-sdk in python. Based on Debian Buster ."
100+ This image provides all the necessary dependencies to use the indy-sdk in python. Based on Debian bullseye ."
101101
102102LABEL summary="$SUMMARY" \
103103 description="$DESCRIPTION" \
@@ -120,7 +120,7 @@ RUN apt-get update -y && \
120120 curl \
121121 git \
122122 less \
123- libffi6 \
123+ libffi-dev \
124124 libgmp10 \
125125 liblzma5 \
126126 libncurses5 \
@@ -205,7 +205,7 @@ ENTRYPOINT ["/bin/bash", "-c", "pytest \"$@\"", "--"]
205205
206206# ACA-Py Builder
207207# Build ACA-Py wheel using setuptools
208- FROM python:${python_version}-slim-buster AS acapy-builder
208+ FROM python:${python_version}-slim-bullseye AS acapy-builder
209209
210210WORKDIR /src
211211
0 commit comments