gocw/Dockerfile

40 lines
764 B
Docker
Raw Normal View History

2021-10-27 15:42:25 +02:00
FROM golang:alpine as builder
RUN apk add --no-cache \
gperf \
alpine-sdk \
openssl-dev \
git \
cmake \
zlib-dev \
linux-headers
WORKDIR /tmp/_build_tdlib/
2021-11-11 15:31:57 +01:00
RUN git clone --depth 1 --branch v1.6.0 https://github.com/tdlib/td.git /tmp/_build_tdlib/
2021-10-27 15:42:25 +02:00
RUN mkdir build
WORKDIR /tmp/_build_tdlib/build/
RUN cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX:PATH=/usr/local ..
2021-11-11 15:31:57 +01:00
RUN cmake --build . -- -j9
2021-10-27 15:42:25 +02:00
RUN make install
ARG COMMIT=latest
WORKDIR /app/
RUN GOBIN=/app/ go install git.siteop.biz/chtwrs/gocw@$COMMIT
FROM alpine:latest
RUN apk add --no-cache \
libstdc++
WORKDIR /app/
# Copy the Pre-built binary file from the previous stage
COPY --from=builder /app/gocw .
# Command to run the executable
CMD ["./gocw"]