Skip to content

Commit

Permalink
initial version
Browse files Browse the repository at this point in the history
  • Loading branch information
ADobrodey committed Nov 21, 2023
1 parent 7f8181f commit c24a776
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy-terraform.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to Docker Hub
- name: Login to Container Registry
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u $ --password-stdin
- name: Terraform-CI
uses: docker/build-push-action@v3
Expand Down
5 changes: 3 additions & 2 deletions terraform/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@
# Inspired by
# https://github.com/cloudbees/java-build-tools-dockerfile/blob/master/Dockerfile
#################################################################################
ARG ALPINE_VERSION=3.16
FROM python:3.10.5-alpine${ALPINE_VERSION} as awscli
ARG ALPINE_VERSION=3.18
ARG PYTHON_VERSION=3.9.18
FROM python:${PYTHON_VERSION}-alpine${ALPINE_VERSION} as awscli

ARG AWS_CLI_VERSION=2.13.37
RUN \
Expand Down

0 comments on commit c24a776

Please sign in to comment.