Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

Awesome Lists containing this project

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
```