mirror of
https://github.com/lukaszraczylo/tdlib-telegram-bot-api-docker.git
synced 2024-06-15 10:55:24 +03:00
Compress the final binary to decrease the size of docker image.
This commit is contained in:
parent
e105effc47
commit
19df81bbe8
@ -1,9 +1,10 @@
|
||||
FROM alpine:latest as buildBase
|
||||
RUN apk add --no-cache alpine-sdk linux-headers git zlib-dev openssl-dev gperf php cmake
|
||||
RUN apk add --no-cache upx alpine-sdk linux-headers git zlib-dev openssl-dev gperf php cmake
|
||||
ADD . /srv
|
||||
WORKDIR /srv
|
||||
RUN git submodule update --init --recursive && mkdir -p build && cd build && cmake -DCMAKE_INSTALL_PREFIX:PATH=../tdlib -DCMAKE_BUILD_TYPE=Release ..
|
||||
RUN cd /srv/build && cmake --build . --target install
|
||||
RUN upx --best /srv/build/telegram-bot-api
|
||||
|
||||
FROM alpine:latest
|
||||
RUN apk add --no-cache zlib-dev openssl-dev libstdc++
|
||||
|
Loading…
Reference in New Issue
Block a user