containers
/
tdlib
Archived
1
Fork 0
This repository has been archived on 2022-11-04. You can view files and clone it, but cannot push or open issues/pull-requests.
tdlib/Dockerfile

27 lines
660 B
Docker
Raw Normal View History

2019-02-22 09:13:02 +04:00
FROM alpine as builder
2019-10-07 14:41:23 +04:00
ENV TDLIB_VERSION=1.4.0
2019-02-22 09:13:02 +04:00
RUN apk update && apk add gperf alpine-sdk openssl-dev git cmake zlib-dev
WORKDIR /tmp/_build_tdlib/
RUN git clone https://github.com/tdlib/td.git /tmp/_build_tdlib/
RUN git checkout v${TDLIB_VERSION}
RUN mkdir build
WORKDIR /tmp/_build_tdlib/build/
RUN cmake -DCMAKE_BUILD_TYPE=Release ..
RUN cmake --build .
RUN make install
RUN rm -rf /tmp/_build_tdlib/
FROM alpine
LABEL maintainer="vladimir@hodakov.me"
RUN apk update && apk add --no-cache gperf openssl-dev git cmake zlib-dev
2019-03-02 16:34:58 +04:00
COPY --from=builder /usr/local/include/td /usr/local/include/td
2019-02-22 09:13:02 +04:00
COPY --from=builder /usr/local/lib/libtd* /usr/local/lib/