File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,9 @@ FROM debian:oldstable
22
33# Create Debian Buster (glibc 2.28) image for cross-building i686 linux GNU binaries
44
5+ RUN groupadd -g 911 build \
6+ && useradd -mN -u 911 -g 911 build
7+
58RUN dpkg --add-architecture i386 \
69 && apt-get update \
710 && DEBIAN_FRONTEND=noninteractive apt-get install -yqq --no-install-recommends \
@@ -15,9 +18,6 @@ RUN dpkg --add-architecture i386 \
1518RUN wget -O- "https://github.com/Kitware/CMake/releases/download/v3.27.8/cmake-3.27.8-linux-$(uname -m).tar.gz" \
1619 | tar -xz --strip-components=1 -C /
1720
18- RUN groupadd -g 911 build \
19- && useradd -mN -u 911 -g 911 build
20-
2121RUN test -f /usr/bin/python || ln -s /usr/bin/python3 /usr/bin/python
2222
2323COPY --chmod=700 entrypoint.sh /entrypoint.sh
Original file line number Diff line number Diff line change @@ -2,6 +2,9 @@ FROM debian:oldstable
22
33# Create Debian Buster (glibc 2.28) image for building linux GNU binaries
44
5+ RUN groupadd -g 911 build \
6+ && useradd -mN -u 911 -g 911 build
7+
58RUN apt-get update \
69 && DEBIAN_FRONTEND=noninteractive apt-get install -yqq --no-install-recommends \
710 build-essential \
@@ -13,9 +16,6 @@ RUN apt-get update \
1316RUN wget -O- "https://github.com/Kitware/CMake/releases/download/v3.27.8/cmake-3.27.8-linux-$(uname -m).tar.gz" \
1417 | tar -xz --strip-components=1 -C /
1518
16- RUN groupadd -g 911 build \
17- && useradd -mN -u 911 -g 911 build
18-
1919RUN test -f /usr/bin/python || ln -s /usr/bin/python3 /usr/bin/python
2020
2121COPY --chmod=700 entrypoint.sh /entrypoint.sh
You can’t perform that action at this time.
0 commit comments