https://github.com/xJonathanLEI/docker-cairo
Multi-arch Docker images with Cairo binaries
https://github.com/xJonathanLEI/docker-cairo
amd64 arm64 cairo docker starknet
Last synced: about 2 months ago
JSON representation
Multi-arch Docker images with Cairo binaries
- Host: GitHub
- URL: https://github.com/xJonathanLEI/docker-cairo
- Owner: xJonathanLEI
- Created: 2023-03-29T04:59:42.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2025-01-29T18:07:24.000Z (5 months ago)
- Last Synced: 2025-05-06T10:09:30.280Z (about 2 months ago)
- Topics: amd64, arm64, cairo, docker, starknet
- Language: Dockerfile
- Homepage: https://hub.docker.com/r/starknet/cairo
- Size: 65.4 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-starknet - docker-cairo - Multi-arch Docker images with Cairo binaries. (Additional developer resources)
README
# docker-cairo
Multi-arch Docker images with Cairo binaries.
## Docker Hub
Docker images are built by GitHub Actions and made available on [Docker Hub](https://hub.docker.com/r/starknet/cairo).
## Usage
All Cairo binaries are available in `PATH` of the images. For example, to format the `erc20.cairo` file using `cairo-format` from Cairo `v1.0.0-alpha.6`:
```console
$ docker run -it --rm -v $(pwd):/work \
--entrypoint cairo-format \
starknet/cairo:1.0.0-alpha.6 \
/work/erc20.cairo
```