Introducing our new CEO Don Johnson - Read More
satosa logo

satosa:alpine

Multi-platform
API Management
Index digest

sha256:4cc66cd9429c14efcabba086e42c474bd47ae29758ecd000aaef1fd7405b79a3

OS/ARCH

Compressed size

45.9 MB

Last pushed

2 months by doijanky

Type

Image

Vulnerabilities

Not scanned

Manifest digest

sha256:fc3c86f808ab143980e6bb507150f3366f4e69dd8ac832a079b0465767399175

Layers (21)

0

ADD alpine-minirootfs-3.19.4-aarch64.tar.gz / # buildkit

3.36 MB


1

CMD ["/bin/sh"]

0 B


2

ENV PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

0 B


3

ENV LANG=C.UTF-8

0 B


4

RUN /bin/sh -c set -eux; apk add --no-cache ca-certificates tzdata ; # buildkit

630.35 KB


5

ENV GPG_KEY=7169605F62C751356D054A26A821E680E5FA6305

0 B


6

ENV PYTHON_VERSION=3.12.8

0 B


7

ENV PYTHON_SHA256=c909157bb25ec114e5869124cc2a9c4a4d4c1e957ca4ff553f1edc692101154e

0 B


8

RUN /bin/sh -c set -eux; apk add --no-cache --virtual .build-deps gnupg tar xz bluez-dev bzip2-dev dpkg-dev dpkg findutils gcc gdbm-dev libc-dev libffi-dev libnsl-dev libtirpc-dev linux-headers make ncurses-dev openssl-dev pax-utils readline-dev sqlite-dev tcl-dev tk tk-dev util-linux-dev xz-dev zlib-dev ; wget -O python.tar.xz "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz"; echo "$PYTHON_SHA256 *python.tar.xz" | sha256sum -c -; wget -O python.tar.xz.asc "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz.asc"; GNUPGHOME="$(mktemp -d)"; export GNUPGHOME; gpg --batch --keyserver hkps://keys.openpgp.org --recv-keys "$GPG_KEY"; gpg --batch --verify python.tar.xz.asc python.tar.xz; gpgconf --kill all; rm -rf "$GNUPGHOME" python.tar.xz.asc; mkdir -p /usr/src/python; tar --extract --directory /usr/src/python --strip-components=1 --file python.tar.xz; rm python.tar.xz; cd /usr/src/python; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; ./configure --build="$gnuArch" --enable-loadable-sqlite-extensions --enable-option-checking=fatal --enable-shared --with-lto --with-ensurepip ; nproc="$(nproc)"; EXTRA_CFLAGS="-DTHREAD_STACK_SIZE=0x100000"; LDFLAGS="${LDFLAGS:--Wl},--strip-all"; make -j "$nproc" "EXTRA_CFLAGS=${EXTRA_CFLAGS:-}" "LDFLAGS=${LDFLAGS:-}" ; rm python; make -j "$nproc" "EXTRA_CFLAGS=${EXTRA_CFLAGS:-}" "LDFLAGS=${LDFLAGS:--Wl},-rpath='\$\$ORIGIN/../lib'" python ; make install; cd /; rm -rf /usr/src/python; find /usr/local -depth \( \( -type d -a \( -name test -o -name tests -o -name idle_test \) \) -o \( -type f -a \( -name '*.pyc' -o -name '*.pyo' -o -name 'libpython*.a' \) \) \) -exec rm -rf '{}' + ; find /usr/local -type f -executable -not \( -name '*tkinter*' \) -exec scanelf --needed --nobanner --format '%n#p' '{}' ';' | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' | xargs -rt apk add --no-network --virtual .python-rundeps ; apk del --no-network .build-deps; export PYTHONDONTWRITEBYTECODE=1; python3 --version; pip3 --version # buildkit

15.7 MB


9

RUN /bin/sh -c set -eux; for src in idle3 pip3 pydoc3 python3 python3-config; do dst="$(echo "$src" | tr -d 3)"; [ -s "/usr/local/bin/$src" ]; [ ! -e "/usr/local/bin/$dst" ]; ln -svT "$src" "/usr/local/bin/$dst"; done # buildkit

250 B


10

CMD ["python3"]

0 B


11

RUN /bin/sh -c set -eux; addgroup --gid 1000 satosa; adduser -D -G satosa --uid 1000 satosa; apk add --no-cache bash jq libxml2-utils openssl xmlsec ; pip install --no-cache-dir yq ; # buildkit

7.41 MB


12

ENV SATOSA_VERSION=8.4.0

0 B


13

RUN /bin/sh -c set -eux; apk add --no-cache --virtual .build-deps bluez-dev bzip2-dev cargo coreutils dpkg-dev dpkg expat-dev findutils gcc gdbm-dev libc-dev libffi-dev libnsl-dev libtirpc-dev linux-headers make musl-dev ncurses-dev openssl-dev pax-utils python3-dev readline-dev sqlite-dev tcl-dev tk tk-dev util-linux-dev xz-dev zlib-dev ; pip install --no-cache-dir satosa==${SATOSA_VERSION} ; find /usr/local -type f -executable -not \( -name '*tkinter*' \) -exec scanelf --needed --nobanner --format '%n#p' '{}' ';' | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' | fgrep -v libgcc_s- | fgrep -v libc.so | xargs -rt apk add --no-network --virtual .satosa-rundeps ; apk del --no-network .build-deps; mkdir /etc/satosa; chown -R satosa:satosa /etc/satosa # buildkit

21.02 MB


14

RUN /bin/sh -c set -eux; python -c 'import urllib.request; urllib.request.urlretrieve("https://github.com/IdentityPython/SATOSA/archive/refs/tags/v'${SATOSA_VERSION%%[a-z]*}'.tar.gz","/tmp/satosa.tgz")'; mkdir /usr/share/satosa; tar --extract --directory /usr/share/satosa --strip-components=1 --file /tmp/satosa.tgz SATOSA-${SATOSA_VERSION%%[a-z]*}/example/; rm /tmp/satosa.tgz # buildkit

9.92 KB


15

WORKDIR /etc/satosa

32 B


16

COPY docker-entrypoint.sh /usr/local/bin/ # buildkit

2.14 KB


17

ENTRYPOINT ["docker-entrypoint.sh"]

0 B


18

EXPOSE map[8080/tcp:{}]

0 B


19

USER satosa:satosa

0 B


20

CMD ["gunicorn" "-b0.0.0.0:8080" "satosa.wsgi:app"]

0 B


Failed to fetch image analysis
There was an error while fetching vulnerabilities and packages for this image. Please try again later.