minecraft-pi-reborn/scripts/ci/Dockerfile

10 lines
251 B
Docker
Raw Normal View History

2022-03-10 02:23:41 +00:00
FROM buildpack-deps:bullseye
# Install
ADD ./scripts/install-dependencies.sh /
RUN \
apt-get update && \
apt-get install --no-install-recommends -y sudo && \
2022-06-10 03:10:05 +00:00
/install-dependencies.sh amd64 armhf arm64 && \
2022-03-10 02:23:41 +00:00
rm -rf /var/lib/apt/lists/*