Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 24 days 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 (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-10-07T12:40:31.000Z (2 months ago)
- Last Synced: 2024-11-15T01:39:51.598Z (27 days ago)
- Topics: amd64, arm64, cairo, docker, starknet
- Language: Dockerfile
- Homepage: https://hub.docker.com/r/starknet/cairo
- Size: 62.5 KB
- Stars: 1
- Watchers: 3
- 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
```