Skip to content

Commit

Permalink
fix: casing for Dockerfiles and default make image repo url (#200)
Browse files Browse the repository at this point in the history
Signed-off-by: Mike Ng <[email protected]>
  • Loading branch information
mikeshng authored Oct 9, 2024
1 parent b935f36 commit c5e1b5b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Dockerfile.agent
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM docker.io/library/golang:1.22 as builder
FROM docker.io/library/golang:1.22 AS builder
WORKDIR /src
COPY . .
RUN make agent
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.principal
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM docker.io/library/golang:1.22 as builder
FROM docker.io/library/golang:1.22 AS builder
WORKDIR /src
COPY . .
RUN make principal
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
DOCKER_BIN?=docker

# Image names
IMAGE_REPOSITORY?=quay.io/jannfis
IMAGE_REPOSITORY?=ghcr.io/argoproj-labs/argocd-agent
IMAGE_NAME_AGENT=argocd-agent-agent
IMAGE_NAME_PRINCIPAL=argocd-agent-principal
IMAGE_PLATFORMS?=linux/amd64
Expand Down

0 comments on commit c5e1b5b

Please sign in to comment.