Skip to content
This repository has been archived by the owner on Dec 15, 2023. It is now read-only.

Commit

Permalink
Fix Dockerfile and readme
Browse files Browse the repository at this point in the history
  • Loading branch information
FabijanC committed Sep 7, 2022
1 parent 2c7f7ac commit 93663d4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.7.12-alpine3.15 as builder
FROM python:3.9.13-alpine3.16 as builder

COPY . .

Expand All @@ -13,7 +13,7 @@ RUN poetry export -f requirements.txt --without-hashes > requirements.txt
RUN pip3 wheel --no-cache-dir --no-deps --wheel-dir /wheels -r requirements.txt


FROM python:3.7.12-alpine3.15
FROM python:3.9.13-alpine3.16

RUN apk add --no-cache libgmpxx

Expand Down
6 changes: 1 addition & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -386,11 +386,7 @@ Response:

## Lite mode

To improve Devnet performance, instead of calculating the actual hash of deployment transactions and blocks, sequential numbering can be used (0x0, 0x1, 0x2, ...).

Consider passing this CLI flag on Devnet startup:

- `--lite-mode` enables optimizations
Since Devnet 0.3.0, the effect of lite mode is minimal and currently only skips block hash calculation (replacing it with iterative numbering: `0x0`, `0x1`, `0x2`, ...). Activate it by passing `--lite-mode` on startup.

## Restart

Expand Down

0 comments on commit 93663d4

Please sign in to comment.