Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
N
nebula
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
exchain
nebula
Commits
4392f0a4
Commit
4392f0a4
authored
Oct 19, 2023
by
Felipe Andrade
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat(proxyd): add debug tools to image
parent
2b18babb
Changes
3
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
136 additions
and
40 deletions
+136
-40
Dockerfile
proxyd/Dockerfile
+1
-1
go.mod
proxyd/go.mod
+43
-39
go.sum
proxyd/go.sum
+92
-0
No files found.
proxyd/Dockerfile
View file @
4392f0a4
...
...
@@ -14,7 +14,7 @@ RUN make proxyd
FROM
alpine:3.18
RUN
apk add bind-tools jq curl
RUN
apk add bind-tools jq curl
bash git redis
COPY
./proxyd/entrypoint.sh /bin/entrypoint.sh
...
...
proxyd/go.mod
View file @
4392f0a4
...
...
@@ -3,80 +3,84 @@ module github.com/ethereum-optimism/optimism/proxyd
go 1.20
require (
github.com/BurntSushi/toml v1.
2.0
github.com/BurntSushi/toml v1.
3.2
github.com/alicebob/miniredis v2.5.0+incompatible
github.com/emirpasic/gods v1.18.1
github.com/ethereum/go-ethereum v1.1
2.1
github.com/go-redsync/redsync/v4 v4.
9.4
github.com/ethereum/go-ethereum v1.1
3.4
github.com/go-redsync/redsync/v4 v4.
10.0
github.com/golang/snappy v0.0.5-0.20220116011046-fa5810519dcb
github.com/gorilla/mux v1.8.0
github.com/gorilla/websocket v1.5.0
github.com/hashicorp/golang-lru v
0.5.5-0.20210104140557-80c98217689d
github.com/hashicorp/golang-lru v
1.0.2
github.com/pkg/errors v0.9.1
github.com/prometheus/client_golang v1.1
4
.0
github.com/redis/go-redis/v9 v9.
1.0
github.com/rs/cors v1.
8.2
github.com/stretchr/testify v1.8.
2
github.com/prometheus/client_golang v1.1
7
.0
github.com/redis/go-redis/v9 v9.
2.1
github.com/rs/cors v1.
10.1
github.com/stretchr/testify v1.8.
4
github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7
golang.org/x/sync v0.
3
.0
golang.org/x/sync v0.
4
.0
gopkg.in/yaml.v3 v3.0.1
)
require (
github.com/DataDog/zstd v1.5.2 // indirect
github.com/VictoriaMetrics/fastcache v1.9.0 // indirect
github.com/DataDog/zstd v1.5.5 // indirect
github.com/Microsoft/go-winio v0.6.1 // indirect
github.com/VictoriaMetrics/fastcache v1.12.1 // indirect
github.com/alicebob/gopher-json v0.0.0-20200520072559-a9ecdc9d1d3a // indirect
github.com/beorn7/perks v1.0.1 // indirect
github.com/bits-and-blooms/bitset v1.
7
.0 // indirect
github.com/btcsuite/btcd/btcec/v2 v2.
2.0
// indirect
github.com/bits-and-blooms/bitset v1.
10
.0 // indirect
github.com/btcsuite/btcd/btcec/v2 v2.
3.2
// indirect
github.com/cespare/xxhash/v2 v2.2.0 // indirect
github.com/cockroachdb/errors v1.
9
.1 // indirect
github.com/cockroachdb/errors v1.
11
.1 // indirect
github.com/cockroachdb/logtags v0.0.0-20230118201751-21c54148d20b // indirect
github.com/cockroachdb/pebble v0.0.0-20230209160836-829675f94811 // indirect
github.com/cockroachdb/redact v1.1.3 // indirect
github.com/cockroachdb/pebble v0.0.0-20231017151438-5807b5917615 // indirect
github.com/cockroachdb/redact v1.1.5 // indirect
github.com/cockroachdb/tokenbucket v0.0.0-20230807174530-cc333fc44b06 // indirect
github.com/consensys/bavard v0.1.13 // indirect
github.com/consensys/gnark-crypto v0.12.
0
// indirect
github.com/crate-crypto/go-kzg-4844 v0.
3
.0 // indirect
github.com/consensys/gnark-crypto v0.12.
1
// indirect
github.com/crate-crypto/go-kzg-4844 v0.
6
.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/deckarep/golang-set/v2 v2.
1.0
// indirect
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.
0.1
// indirect
github.com/deckarep/golang-set/v2 v2.
3.1
// indirect
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.
2.0
// indirect
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
github.com/ethereum/c-kzg-4844 v0.3.
0
// indirect
github.com/getsentry/sentry-go v0.
18
.0 // indirect
github.com/go-ole/go-ole v1.
2.6
// indirect
github.com/ethereum/c-kzg-4844 v0.3.
1
// indirect
github.com/getsentry/sentry-go v0.
25
.0 // indirect
github.com/go-ole/go-ole v1.
3.0
// indirect
github.com/go-stack/stack v1.8.1 // indirect
github.com/gofrs/flock v0.8.1 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/golang/protobuf v1.5.
2
// indirect
github.com/golang/protobuf v1.5.
3
// indirect
github.com/gomodule/redigo v1.8.9 // indirect
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/hashicorp/go-multierror v1.1.1 // indirect
github.com/holiman/bloomfilter/v2 v2.0.3 // indirect
github.com/holiman/uint256 v1.2.3 // indirect
github.com/klauspost/compress v1.1
5.15
// indirect
github.com/klauspost/compress v1.1
7.1
// indirect
github.com/kr/pretty v0.3.1 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/mattn/go-runewidth v0.0.1
3
// indirect
github.com/mattn/go-runewidth v0.0.1
5
// indirect
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
github.com/mmcloughlin/addchain v0.4.0 // indirect
github.com/olekukonko/tablewriter v0.0.5 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/prometheus/client_model v0.
3
.0 // indirect
github.com/prometheus/common v0.
39
.0 // indirect
github.com/prometheus/procfs v0.
9
.0 // indirect
github.com/rivo/uniseg v0.
2.0
// indirect
github.com/rogpeppe/go-internal v1.
9
.0 // indirect
github.com/prometheus/client_model v0.
5
.0 // indirect
github.com/prometheus/common v0.
44
.0 // indirect
github.com/prometheus/procfs v0.
12
.0 // indirect
github.com/rivo/uniseg v0.
4.4
// indirect
github.com/rogpeppe/go-internal v1.
11
.0 // indirect
github.com/shirou/gopsutil v3.21.11+incompatible // indirect
github.com/supranational/blst v0.3.11 // indirect
github.com/tklauser/go-sysconf v0.3.1
0
// indirect
github.com/tklauser/numcpus v0.
4.0
// indirect
github.com/tklauser/go-sysconf v0.3.1
2
// indirect
github.com/tklauser/numcpus v0.
6.1
// indirect
github.com/yuin/gopher-lua v0.0.0-20210529063254-f4c35e4016d9 // indirect
github.com/yusufpapurcu/wmi v1.2.2 // indirect
golang.org/x/crypto v0.10.0 // indirect
golang.org/x/exp v0.0.0-20230515195305-f3d0a9c9a5cc // indirect
golang.org/x/sys v0.9.0 // indirect
golang.org/x/text v0.10.0 // indirect
google.golang.org/protobuf v1.28.1 // indirect
github.com/yusufpapurcu/wmi v1.2.3 // indirect
golang.org/x/crypto v0.14.0 // indirect
golang.org/x/exp v0.0.0-20231006140011-7918f672742d // indirect
golang.org/x/mod v0.13.0 // indirect
golang.org/x/sys v0.13.0 // indirect
golang.org/x/text v0.13.0 // indirect
golang.org/x/tools v0.14.0 // indirect
google.golang.org/protobuf v1.31.0 // indirect
gopkg.in/natefinch/npipe.v2 v2.0.0-20160621034901-c1b8fa8bdcce // indirect
rsc.io/tmplfunc v0.0.3 // indirect
)
proxyd/go.sum
View file @
4392f0a4
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment