Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Dockerfiles] Update pkg dir to encoding dir #287

Merged
merged 1 commit into from
Feb 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion churner/cmd/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ COPY core /app/core
COPY api /app/api
COPY indexer /app/indexer
COPY contracts /app/contracts
COPY pkg /app/pkg
COPY encoding /app/encoding
COPY go.mod /app
COPY go.sum /app

Expand Down
2 changes: 1 addition & 1 deletion disperser/cmd/apiserver/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ COPY contracts /app/contracts
COPY core /app/core
COPY api /app/api
COPY indexer /app/indexer
COPY pkg /app/pkg
COPY encoding /app/encoding
COPY go.mod /app
COPY go.sum /app

Expand Down
2 changes: 1 addition & 1 deletion disperser/cmd/batcher/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ COPY core /app/core
COPY api /app/api
COPY contracts /app/contracts
COPY indexer /app/indexer
COPY pkg /app/pkg
COPY encoding /app/encoding
COPY go.mod /app
COPY go.sum /app

Expand Down
2 changes: 1 addition & 1 deletion disperser/cmd/dataapi/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ COPY contracts /app/contracts
COPY core /app/core
COPY api /app/api
COPY indexer /app/indexer
COPY pkg /app/pkg
COPY encoding /app/encoding
COPY go.mod /app
COPY go.sum /app

Expand Down
2 changes: 1 addition & 1 deletion disperser/cmd/encoder/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ COPY contracts /app/contracts
COPY core /app/core
COPY api /app/api
COPY indexer /app/indexer
COPY pkg /app/pkg
COPY encoding /app/encoding
COPY go.mod /app
COPY go.sum /app

Expand Down
2 changes: 1 addition & 1 deletion node/cmd/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ COPY common /app/common
COPY core /app/core
COPY api /app/api
COPY contracts /app/contracts
COPY pkg /app/pkg
COPY encoding /app/encoding
COPY go.mod /app
COPY go.sum /app

Expand Down
2 changes: 1 addition & 1 deletion node/plugin/cmd/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ COPY common /app/common
COPY core /app/core
COPY api /app/api
COPY contracts /app/contracts
COPY pkg /app/pkg
COPY encoding /app/encoding
COPY go.mod /app
COPY go.sum /app

Expand Down
2 changes: 1 addition & 1 deletion retriever/cmd/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ COPY clients /app/clients
COPY node /app/node
COPY churner /app/churner
COPY indexer /app/indexer
COPY pkg /app/pkg
COPY encoding /app/encoding
COPY go.mod /app
COPY go.sum /app

Expand Down
2 changes: 1 addition & 1 deletion synthetic-test-client.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ COPY churner /app/churner
COPY core /app/core
COPY indexer /app/indexer
COPY contracts /app/contracts
COPY pkg /app/pkg
COPY encoding /app/encoding
# Set the working directory inside the container
WORKDIR /app

Expand Down
Loading