Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updating base images from slim-buster to slim-bullseye #2105

Merged
merged 1 commit into from
Feb 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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