Skip to content

Commit

Permalink
Include temporal cli
Browse files Browse the repository at this point in the history
  • Loading branch information
Israphel committed May 9, 2024
1 parent aa10a5e commit 80feb5c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,21 +17,21 @@ jobs:
name: Build and Push Docker Image
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Login to DockerHub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Checkout code
uses: actions/checkout@v4

- name: Setup QEMU
uses: docker/setup-qemu-action@v3
with:
platforms: amd64,arm64

- name: Set p Docker Buildx
- name: Setup Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Docker Build and Push
Expand Down
5 changes: 4 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM bitnami/kubectl:1.28.7 as kubectl
FROM bitnami/kubectl:1.29.2 as kubectl

FROM ubuntu:22.04

Expand Down Expand Up @@ -39,6 +39,9 @@ COPY --from=kubectl /opt/bitnami/kubectl/bin/kubectl /usr/local/bin/
# Install Azure CLI
RUN curl -sL https://aka.ms/InstallAzureCLIDeb | bash

# Install Temporal CLI
RUN curl -sSf https://temporal.download/cli.sh | bash

RUN apt-get clean && \
rm -rf /var/lib/apt/lists/*

Expand Down

0 comments on commit 80feb5c

Please sign in to comment.