Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
mike dupont committed Sep 15, 2024
1 parent 43e0c17 commit f30d2bf
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.dockerignore
.git
Dockerfile
4 changes: 4 additions & 0 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,7 @@ jobs:

- name: Build the Docker image
run: docker build . --file Dockerfile --tag my-image-name:$(date +%s)
- name: Build the Docker image via docker compose
run: docker compose build
- name: run the Docker tests
run: docker compose up
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ o1js-reference
_build/
src/config/
src/config.mlh
/strace.txt
2 changes: 2 additions & 0 deletions README-dev.md
Original file line number Diff line number Diff line change
Expand Up @@ -227,3 +227,5 @@ After the Node.js process is running, open the Chrome browser and navigate to `c
# building

`docker build . --progress=plain`

`docker image history o1labs/mina-local-network:compatible-latest-lightnet > history.txt`
11 changes: 11 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
version: '3'

services:
mina-local-network:
restart: no
image: o1js-build
build: .
environment:
- PROOF_LEVEL=full
- LOG_LEVEL=Debug
working_dir: /app
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit f30d2bf

Please sign in to comment.