Skip to content

Commit cbcaa7d

Browse files
authored
Merge pull request openwallet-foundation#2105 from pradeepp88/feature/updating-base-images
Updating base images from slim-buster to slim-bullseye
2 parents eaf010c + 6e2bb47 commit cbcaa7d

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

docker/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
ARG python_version=3.6.13
2-
FROM python:${python_version}-slim-buster AS build
2+
FROM python:${python_version}-slim-bullseye AS build
33

44
WORKDIR /src
55

@@ -8,7 +8,7 @@ ADD . .
88
RUN pip install setuptools wheel
99
RUN python setup.py sdist bdist_wheel
1010

11-
FROM python:${python_version}-slim-buster AS main
11+
FROM python:${python_version}-slim-bullseye AS main
1212

1313
ARG uid=1001
1414
ARG user=aries
@@ -49,7 +49,7 @@ RUN apt-get update -y && \
4949
curl \
5050
git \
5151
less \
52-
libffi6 \
52+
libffi-dev \
5353
libgmp10 \
5454
liblzma5 \
5555
libncurses5 \

docker/Dockerfile.indy

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -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

88
ARG user=indy
99
ENV 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

8585
ARG uid=1001
8686
ARG 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

102102
LABEL 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

210210
WORKDIR /src
211211

0 commit comments

Comments
 (0)