-
Notifications
You must be signed in to change notification settings - Fork 1
Development
The primary notes on development of this repository is included in the README. This page contains notes on tips and tricks for developing on the Spellcheck GitHub Action. I mostly write these for myself, since I forget the small things.
docker build -t jonasbn/cheatset:latest .
When building on Apple silicon (M1), this additional parameter --platform
has to be specified and set to linux/amd64
for use with GitHub actions etc.
docker build --platform linux/amd64 -t jonasbn/cheatset:latest .
If not specifying the parameter the architecture will be: arm64
You can see the the architecture of your image like so:
docker image inspect jonasbn/cheatset:latest |grep -i architecture
REF: Blog post: "Create docker image on Apple Silicon M1 Mac" by Lakhan Samani.
Since cheatset
relies on SQLite, it is not possible to use the slim variation of the base image out of the box
See: Cheatset GitHub repository, cheatset.gemspec
and the Dockerfile
in this repository.
- List of official Ruby Docker images
- Docker image for Dash.app cheat sheet generators who do not have a Ruby toolchain