#syntax=docker/dockerfile:1.4 # see https://docs.docker.com/build/dockerfile/frontend/#dockerfile-frontend # see https://github.com/moby/buildkit/blob/master/frontend/dockerfile/docs/reference.md#syntax # see https://docs.docker.com/engine/reference/builder/#syntax # # SPDX-FileCopyrightText: © Sebastian Thomschke and contributors # SPDX-License-Identifier: AGPL-3.0-or-later # SPDX-ArtifactOfProjectHomePage: https://github.com/Second-Hand-Friends/kleinanzeigen-bot/ # ###################### # runtime image base ###################### FROM debian:stable-slim as runtime-base-image ARG DEBIAN_FRONTEND=noninteractive ARG LC_ALL=C SHELL ["/bin/bash", "-euo", "pipefail", "-c"] RUN <