-
Notifications
You must be signed in to change notification settings - Fork 7
/
Dockerfile
38 lines (33 loc) · 998 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
FROM alpine:3.12
RUN apk --no-cache add \
ca-certificates \
curl \
g++ \
libevent \
make \
msgpack-c-dev \
musl-dev \
zeromq && \
update-ca-certificates
WORKDIR /usr/local/src
ENV CFLAGS -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security
ENV LDFLAGS -Wl,-Bsymbolic-functions -fPIE -pie -Wl,-z,relro -Wl,-z,now
ENV CPPFLAGS -Wdate-time -D_FORTIFY_SOURCE=2
ENV CXXFLAGS -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security
ENV GROONGA_VERSION=14.0.2
RUN \
curl -Lo groonga.tar.gz \
https://packages.groonga.org/source/groonga/groonga-$GROONGA_VERSION.tar.gz && \
tar xzf groonga.tar.gz && \
cd groonga-$GROONGA_VERSION && \
./configure \
--disable-dependency-tracking \
--disable-groonga-httpd \
--disable-maintainer-mode \
--prefix=/usr && \
make -j$(nproc) && \
make DESTDIR=/chroot install
FROM alpine:3.12
RUN apk --no-cache add zeromq libevent msgpack-c
COPY --from=0 /chroot/ /
ENTRYPOINT ["groonga"]