Skip to content

Commit

Permalink
fix: txsim docker build (#2166)
Browse files Browse the repository at this point in the history
Closes #2161
  • Loading branch information
rootulp authored Jul 26, 2023
1 parent 47b6109 commit af1a07a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ txsim-build:
@go mod tidy -compat=1.20
.PHONY: txsim-build

## docker-txsim-build: Build the Docker image tx simulator.
## txsim-build-docker: Build the tx simulator Docker image. Requires Docker.
txsim-build-docker:
docker build -t ghcr.io/celestiaorg/txsim -f docker/Dockerfile_txsim .
.PHONY: txsim-build-docker
Expand Down
2 changes: 2 additions & 0 deletions docker/Dockerfile_txsim
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ FROM docker.io/golang:1.20.6-alpine3.17 as builder
RUN apk update && apk add --no-cache \
gcc \
git \
# linux-headers are needed for Ledger support
linux-headers \
make \
musl-dev
COPY . /celestia-app
Expand Down

0 comments on commit af1a07a

Please sign in to comment.