Skip to content

Commit

Permalink
ci: investigate docker issues (#133)
Browse files Browse the repository at this point in the history
* ci: investigate docker issues

* chore: fix docker syntax
  • Loading branch information
karl-cardenas-coding authored Aug 17, 2024
1 parent cf0b25e commit a09b1fd
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ jobs:


- name: Build and push
uses: docker/build-push-action@v4
uses: docker/build-push-action@v6
with:
context: .
build-args: VERSION="99.99.99"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ jobs:
check-latest: true

- name: Set up QEMU
uses: docker/setup-qemu-action@v3
uses: docker/setup-qemu-action@v3.2.0

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Copyright (c) karl-cardenas-coding
# SPDX-License-Identifier: MIT

FROM golang:1.23.0-alpine3.20 as builder
FROM golang:1.23.0-alpine3.20 AS builder

LABEL org.opencontainers.image.source="http://github.com/karl-cardenas-coding/go-lambda-cleanup"
LABEL org.opencontainers.image.description "A solution for removing previous versions of AWS Lambdas"
LABEL org.opencontainers.image.description="A solution for removing previous versions of AWS Lambdas"

ARG VERSION

Expand Down

0 comments on commit a09b1fd

Please sign in to comment.