Build custom container images / build (map[build_args:PG_VERSION=18
POSTGIS_VERSION=3
VCHORD_VERSION=0.5.3
context:postgres name:postgres-custom tags:git.ajpanton.se/ajp_anton/postgres-custom:18
git.ajpanton.se/ajp_anton/postgres-custom:18-postgis3-vchord0.5.3
git.ajpanton.se/ajp_an… (push) Successful in 2m58s
Build custom container images / build (map[build_args:PHP_VERSION=8
context:php8-pgsql name:php8-pgsql tags:git.ajpanton.se/ajp_anton/php8-pgsql:8
git.ajpanton.se/ajp_anton/php8-pgsql:8-fpm-alpine
git.ajpanton.se/ajp_anton/php8-pgsql:latest
]) (push) Successful in 40s
Build custom container images / build (map[build_args:PYTHON_VERSION=3
context:ai-tools-utils name:ai-tools-utils tags:git.ajpanton.se/ajp_anton/ai-tools-utils:3
git.ajpanton.se/ajp_anton/ai-tools-utils:latest
]) (push) Successful in 45s
Build custom container images / build (map[build_args:PYTHON_VERSION=3.13
context:ai-tools-utils name:ai-tools-utils-3.13 tags:git.ajpanton.se/ajp_anton/ai-tools-utils:3.13
]) (push) Successful in 42s
14 lines
293 B
Docker
14 lines
293 B
Docker
ARG PYTHON_VERSION=3
|
|
FROM python:${PYTHON_VERSION}
|
|
|
|
RUN set -eux; \
|
|
apt-get update; \
|
|
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
|
|
ca-certificates \
|
|
exiftool; \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
WORKDIR /work
|
|
|
|
CMD ["python3", "--version"]
|