minecraft-pi-reborn/scripts/ci/Dockerfile
TheBrokenRail 49f8da2a80
Some checks reported errors
minecraft-pi-reborn/pipeline/head Something is wrong with the build of this commit
Fix Build
2022-06-10 21:59:57 -04:00

10 lines
251 B
Docker

FROM buildpack-deps:bullseye
# Install
ADD ./scripts/install-dependencies.sh /
RUN \
apt-get update && \
apt-get install --no-install-recommends -y sudo && \
/install-dependencies.sh amd64 armhf arm64 && \
rm -rf /var/lib/apt/lists/*