Skip to content

Commit be3c408

Browse files
committed
fix: update dockerfile
1 parent 1e47bb2 commit be3c408

File tree

2 files changed

+24
-0
lines changed

2 files changed

+24
-0
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Main workflow
2+
3+
on:
4+
push:
5+
branches:
6+
- fix/update-dockerfile
7+
8+
jobs:
9+
build-and-push:
10+
uses: propeller-heads/ci-cd-templates/.github/workflows/build-and-push-docker-image.yaml@main
11+
permissions:
12+
id-token: write
13+
contents: read
14+
with:
15+
image_tag: ${{ needs.release.outputs.next_release_version }}
16+
image_name: tycho-indexer
17+
secrets:
18+
app_id: ${{ secrets.APP_ID }}
19+
app_private_key: ${{ secrets.APP_PRIVATE_KEY }}
20+
role_to_assume: ${{ secrets.ROLE_TO_ASSUME }}
21+
aws_region: ${{ secrets.AWS_REGION }}
22+
repository_url: ${{ secrets.REPOSITORY_URL }}
23+
domain_owner: ${{ secrets.DOMAIN_OWNER }}

Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ RUN cargo install cargo-workspaces
1313
RUN cargo install cargo-chef
1414
COPY rust-toolchain.toml .
1515
RUN rustup update 1.81
16+
RUN rustup set profile minimal && rustup install stable
1617

1718
FROM chef AS planner
1819
COPY . .

0 commit comments

Comments
 (0)