Skip to content

Commit 882b8ce

Browse files
committed
Rename Dockerfiles
1 parent 255404b commit 882b8ce

File tree

8 files changed

+6
-6
lines changed

8 files changed

+6
-6
lines changed

.github/workflows/relayer-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ jobs:
200200
aws-ecr-name: chainlink-plugins-dev
201201
aws-region-ecr: ${{ vars.AWS_REGION }}
202202
aws-region-gati: ${{ vars.AWS_REGION }}
203-
dockerfile: scripts/build/Dockerfile.build-final.nix
203+
dockerfile: scripts/build/nix.build-final.Dockerfile
204204
docker-build-context: .
205205
docker-manifest-sign: true
206206
docker-tag-custom-suffix: "-chainlink-ton"

docs/plugin/build.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ drwxr-xr-x 1 root root 4096 Apr 4 02:05 ..
8181
# ...
8282
```
8383
84-
### Using Dockerfile.build-final.nix builder
84+
### Using nix.build-final.Dockerfile builder
8585
8686
Build the Chainlink core node image using a Nix builder.
8787
@@ -90,15 +90,15 @@ Builds a specific Nix package (single bin or a bundle) and layers in the output
9090
```bash
9191
docker build . \
9292
-t smartcontract/chainlink-plugins-dev:v0.0.1-beta.1-chainlink-ton \
93-
-f ./scripts/build/Dockerfile.build-final.nix
93+
-f ./scripts/build/nix.build-final.Dockerfile
9494
```
9595
9696
Or with using specific build args:
9797
9898
```bash
9999
docker build . \
100100
-t smartcontract/chainlink-plugins-dev:v0.0.1-beta.1-chainlink-ton \
101-
-f ./scripts/build/Dockerfile.build-final.nix \
101+
-f ./scripts/build/nix.build-final.Dockerfile \
102102
--build-arg NIX_BUILD_PKG=chainlink-ton \
103103
--build-arg BASE_IMAGE=public.ecr.aws/chainlink/chainlink:v2.23.0-plugins
104104
```

docs/plugin/release.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
Docker images are automatically built and published to the internal staging `chainlink-plugins-dev` ECR with a specific tag.
66

7-
The [build-publish-docker](../../.github/workflows/relayer-publish.yml) CI workflow is triggered on every tag and commit to the `main` branch. Additionally, it will also build and publish PR commits if the PR has a specific `build-publish-docker` label attached. The build process builds the specified (or default) repository package, using [a Docker/Nix builder](../../scripts/build/Dockerfile.build-final.nix), and layers in the output artifact on top of the official Chainlink plugins image (Dockerfile: ARG BASE_IMAGE).
7+
The [build-publish-docker](../../.github/workflows/relayer-publish.yml) CI workflow is triggered on every tag and commit to the `main` branch. Additionally, it will also build and publish PR commits if the PR has a specific `build-publish-docker` label attached. The build process builds the specified (or default) repository package, using [a Docker/Nix builder](../../scripts/build/nix.build-final.Dockerfile), and layers in the output artifact on top of the official Chainlink plugins image (Dockerfile: ARG BASE_IMAGE).
88

99
Once the label is set, a multi-arch image will be built by the [smartcontrackit/.github/workflows/reusable-docker-build-publish](https://github.com/smartcontractkit/.github/blob/main/.github/workflows/reusable-docker-build-publish.yml) shared CI workflow, and published: `***.dkr.ecr.us-west-2.amazonaws.com/chainlink-plugins-dev:pr-<pr-num>-<sha-short>-chainlink-ton`
1010

scripts/build/make-docker.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ if [[ "$*" == *"--docker-builder"* ]]; then
2121
# Use the Docker builder
2222
docker build . \
2323
-t smartcontract/chainlink-plugins-dev:$PKG_VERSION-$PKG \
24-
-f ./scripts/build/Dockerfile.build-final.nix \
24+
-f ./scripts/build/nix.build-final.Dockerfile \
2525
--build-arg BASE_IMAGE=$BASE_IMAGE
2626

2727
exit 0
File renamed without changes.

0 commit comments

Comments
 (0)