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
- Host: GitHub
- URL: https://github.com/ejnshtein/tdlib
- Owner: ejnshtein
- License: mit
- Created: 2020-10-21T22:57:29.000Z (over 4 years ago)
- Default Branch: tdlib-release-241201
- Last Pushed: 2024-12-01T19:31:30.000Z (5 months ago)
- Last Synced: 2025-01-19T18:12:34.663Z (3 months ago)
- Language: Dockerfile
- Homepage: https://hub.docker.com/repository/docker/ejnshtein/tdlib
- Size: 5.86 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
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.