Skip to content

Commit f30d2bf

Browse files
author
mike dupont
committedSep 15, 2024·
update
1 parent 43e0c17 commit f30d2bf

File tree

6 files changed

+22
-1
lines changed

6 files changed

+22
-1
lines changed
 

‎.dockerignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.dockerignore
2+
.git
3+
Dockerfile

‎.github/workflows/docker-image.yml

+4
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,7 @@ jobs:
2020

2121
- name: Build the Docker image
2222
run: docker build . --file Dockerfile --tag my-image-name:$(date +%s)
23+
- name: Build the Docker image via docker compose
24+
run: docker compose build
25+
- name: run the Docker tests
26+
run: docker compose up

‎.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,4 @@ o1js-reference
1010
_build/
1111
src/config/
1212
src/config.mlh
13+
/strace.txt

‎README-dev.md

+2
Original file line numberDiff line numberDiff line change
@@ -227,3 +227,5 @@ After the Node.js process is running, open the Chrome browser and navigate to `c
227227
# building
228228

229229
`docker build . --progress=plain`
230+
231+
`docker image history o1labs/mina-local-network:compatible-latest-lightnet > history.txt`

‎docker-compose.yml

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
version: '3'
2+
3+
services:
4+
mina-local-network:
5+
restart: no
6+
image: o1js-build
7+
build: .
8+
environment:
9+
- PROOF_LEVEL=full
10+
- LOG_LEVEL=Debug
11+
working_dir: /app

‎package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)