We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 703374b commit 11f2f0bCopy full SHA for 11f2f0b
Dockerfile
@@ -29,6 +29,11 @@ RUN \
29
build-base \
30
curl \
31
&& \
32
+ # Set same default compilation flags as abuild.
33
+ export CFLAGS="-Os -fomit-frame-pointer" && \
34
+ export CXXFLAGS="$CFLAGS" && \
35
+ export CPPFLAGS="$CFLAGS" && \
36
+ export LDFLAGS="-Wl,--as-needed" && \
37
# Download.
38
echo "Downloading watch..." && \
39
mkdir watch && \
@@ -57,6 +62,11 @@ RUN \
57
62
zlib-dev \
58
63
geoip-dev \
59
64
65
66
67
68
69
60
70
61
71
echo "Downloading OpenResty..." && \
72
mkdir openresty && \
0 commit comments