Skip to content

Commit

Permalink
Merge pull request #2105 from pradeepp88/feature/updating-base-images
Browse files Browse the repository at this point in the history
Updating base images from slim-buster to slim-bullseye
  • Loading branch information
WadeBarnes authored Feb 1, 2023
2 parents eaf010c + 6e2bb47 commit cbcaa7d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG python_version=3.6.13
FROM python:${python_version}-slim-buster AS build
FROM python:${python_version}-slim-bullseye AS build

WORKDIR /src

Expand All @@ -8,7 +8,7 @@ ADD . .
RUN pip install setuptools wheel
RUN python setup.py sdist bdist_wheel

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

ARG uid=1001
ARG user=aries
Expand Down Expand Up @@ -49,7 +49,7 @@ RUN apt-get update -y && \
curl \
git \
less \
libffi6 \
libffi-dev \
libgmp10 \
liblzma5 \
libncurses5 \
Expand Down
10 changes: 5 additions & 5 deletions docker/Dockerfile.indy
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ ARG rust_version=1.46

# This image could be replaced with an "indy" image from another repo,
# such as the indy-sdk
FROM rust:${rust_version}-slim-buster as indy-builder
FROM rust:${rust_version}-slim as indy-builder

ARG user=indy
ENV HOME="/home/$user"
Expand Down Expand Up @@ -80,7 +80,7 @@ RUN rm -rf indy-sdk indy-postgres
# Indy Base Image
# This image could be replaced with an "indy-python" image from another repo,
# such as the indy-sdk
FROM python:${python_version}-slim-buster as indy-base
FROM python:${python_version}-slim-bullseye as indy-base

ARG uid=1001
ARG user=indy
Expand All @@ -97,7 +97,7 @@ ENV HOME="/home/$user" \
SHELL=/bin/bash \
SUMMARY="indy-python base image" \
DESCRIPTION="aries-cloudagent provides a base image for running Hyperledger Aries agents in Docker. \
This image provides all the necessary dependencies to use the indy-sdk in python. Based on Debian Buster."
This image provides all the necessary dependencies to use the indy-sdk in python. Based on Debian bullseye."

LABEL summary="$SUMMARY" \
description="$DESCRIPTION" \
Expand All @@ -120,7 +120,7 @@ RUN apt-get update -y && \
curl \
git \
less \
libffi6 \
libffi-dev \
libgmp10 \
liblzma5 \
libncurses5 \
Expand Down Expand Up @@ -205,7 +205,7 @@ ENTRYPOINT ["/bin/bash", "-c", "pytest \"$@\"", "--"]

# ACA-Py Builder
# Build ACA-Py wheel using setuptools
FROM python:${python_version}-slim-buster AS acapy-builder
FROM python:${python_version}-slim-bullseye AS acapy-builder

WORKDIR /src

Expand Down

0 comments on commit cbcaa7d

Please sign in to comment.