You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
RUN wget -O - https://github.com/crosstool-ng/crosstool-ng/releases/download/crosstool-ng-${CROSSTOOL_NG_VERSION}/crosstool-ng-${CROSSTOOL_NG_VERSION}.tar.bz2 | tar --strip-components=1 -xj
20
+
21
+
# Install ct-ng globally
22
+
RUN ./configure && make install
23
+
24
+
# Copy the build configurations
25
+
COPY configurations /tmp/configurations
26
+
27
+
# Change to build user
28
+
USER 1000:1000
29
+
30
+
# Loop over configuration files and compile toolchains
31
+
RUN mkdir -p /tmp/tarballs; \
32
+
for configuration in /tmp/configurations/*.conf; do \
0 commit comments