2018-04-23 18:57:48 +03:00
|
|
|
#
|
|
|
|
# Docker cross-compiler target
|
|
|
|
#
|
2022-09-14 18:59:31 +03:00
|
|
|
# This docker target builds on the Debian Bullseye base image.
|
2018-04-23 18:57:48 +03:00
|
|
|
#
|
2022-09-14 18:59:31 +03:00
|
|
|
FROM docker.io/library/debian:11-slim
|
2018-04-23 18:57:48 +03:00
|
|
|
|
2022-09-14 18:59:31 +03:00
|
|
|
RUN export DEBIAN_FRONTEND=noninteractive && \
|
|
|
|
apt-get update && \
|
|
|
|
apt-get install -y eatmydata && \
|
|
|
|
eatmydata apt-get dist-upgrade -y && \
|
|
|
|
eatmydata apt-get install --no-install-recommends -y \
|
2018-04-23 18:57:48 +03:00
|
|
|
gcc-mips64-linux-gnuabi64 \
|
|
|
|
libc6-dev-mips64-cross
|