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,9 +2,6 @@ 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-
85RUN dpkg --add-architecture i386 \
96 && apt-get update \
107 && DEBIAN_FRONTEND=noninteractive apt-get install -yqq --no-install-recommends \
@@ -18,6 +15,9 @@ RUN dpkg --add-architecture i386 \
1815RUN wget -O- "https://github.com/Kitware/CMake/releases/download/v3.27.8/cmake-3.27.8-linux-$(uname -m).tar.gz" \
1916 | tar -xz --strip-components=1 -C /
2017
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,9 +2,6 @@ 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-
85RUN apt-get update \
96 && DEBIAN_FRONTEND=noninteractive apt-get install -yqq --no-install-recommends \
107 build-essential \
@@ -16,6 +13,9 @@ RUN apt-get update \
1613RUN wget -O- "https://github.com/Kitware/CMake/releases/download/v3.27.8/cmake-3.27.8-linux-$(uname -m).tar.gz" \
1714 | tar -xz --strip-components=1 -C /
1815
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