Skip to content

Latest commit

 

History

History
26 lines (17 loc) · 727 Bytes

README.md

File metadata and controls

26 lines (17 loc) · 727 Bytes

Tezos Declarative Dockerfiles

A few declarative Dockerfile's for Tezos. Easier to modify and reason about (imho).

If you are experiencing Illegal instruction (core dumped) when trying to run the official images, give Dockerfile-ubuntu a try 👍

Build

# mainnet (alpine based ~ 330mb)
docker build -t asbjornenge/tezos-alpine:latest -f Dockerfile-alpine .

# zeronet (alpine based)
docker build -t asbjornenge/tezos-alpine-zeronet:latest --build-arg net=zeronet -f Dockerfile-alpine .

# mainnet (ubuntu based ~ 400mb)
docker build -t $USER/tezos-ubuntu:latest -f Dockerfile-ubuntu .

Run

docker run --rm -it asbjornenge/tezos-ubuntu:latest tezos-node

enjoy.