mirror of
https://github.com/bensuperpc/dockcross.git
synced 2024-11-10 05:07:26 +01:00
Bensuperpc
8ebd448ba9
Upgrade to debian Buster slim (later to debian bullseye, crosstool-ng must be updated first, version 1.23 is not compatible with debian bullseye) Disable python script (build-and-install-python.sh), the version of python in the repositories is recent enough for crosstool-ng 1.24 and above. Changed from python to python3 for compatibility Adding the manual launch of a github workflow Signed-off-by: Bensuperpc <bensuperpc@gmail.com>
18 lines
467 B
Docker
18 lines
467 B
Docker
FROM debian:buster-slim
|
|
MAINTAINER Matt McCormick "matt.mccormick@kitware.com"
|
|
|
|
#include "common.debian"
|
|
|
|
#include "common.dockcross"
|
|
|
|
#include "common.docker"
|
|
|
|
# Build-time metadata as defined at http://label-schema.org
|
|
# Note: To avoid systematic rebuild of dependent images, only
|
|
# name and vcs-url are included.
|
|
ARG IMAGE
|
|
ARG VCS_URL
|
|
LABEL org.label-schema.name=$IMAGE \
|
|
org.label-schema.vcs-url=$VCS_URL \
|
|
org.label-schema.schema-version="1.0"
|