An open API service indexing awesome lists of open source software.

https://github.com/ejnshtein/tdlib

Docker image with tdlib inside
https://github.com/ejnshtein/tdlib

Last synced: about 1 month ago
JSON representation

Docker image with tdlib inside

Awesome Lists containing this project

README

        

# ejnshtein/tdlib

Docker image with [tdlib](https://github.com/tdlib/td) inside.
Binaries are located in `/usr/local/lib/`. (example: `/usr/local/lib/libtdjson.so`)

## Usage
Inside you dockerfile add `FROM` entry as follows:
```docker
FROM ejnshtein/tdlib:latest as tdlib
```
And after `WORKDIR` command:
```docker
COPY --from=tdlib /usr/local/lib/libtdjson.so .
```
This will copy binary from this image to your project.