Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion develop/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ RUN apk add --no-cache --virtual egg-deps wget ca-certificates make tar gnupg bu
&& wget "https://prdownloads.sourceforge.net/tcl/tcl9.0.1-src.tar.gz" -O tcl9.0.1-src.tar.gz --progress=dot:giga \
&& tar -zxf tcl9.0.1-src.tar.gz \
&& ( cd tcl9.0.1 \
&& find . \( -name configure -o -name tcl.m4 \) -exec sed -i 's/CFLAGS_OPTIMIZE="-O2/CFLAGS_OPTIMIZE="-Os/g' {} + \
&& cd unix \
&& ./configure \
&& nproc="$(nproc)" \
Expand All @@ -27,7 +28,7 @@ RUN apk add --no-cache --virtual egg-deps wget ca-certificates make tar gnupg bu
&& tar -zxf develop.tar.gz \
&& rm develop.tar.gz \
&& ( cd eggdrop-$EGGDROP_COMMIT \
&& ./configure \
&& CFLAGS="-Os" ./configure \
&& make config \
&& nproc="$(nproc)" \
&& make -j"$nproc" \
Expand Down