Skip to content

Commit

Permalink
build: disambiguate base image names
Browse files Browse the repository at this point in the history
to build with podman / buildah.
  • Loading branch information
pini-gh committed Mar 7, 2024
1 parent 4c3f019 commit 9fcd730
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions Dockerfile.alpine
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM nginxproxy/docker-gen:0.11.2 AS docker-gen
FROM docker.io/nginxproxy/docker-gen:0.11.2 AS docker-gen

FROM nginxproxy/forego:0.18.1 AS forego
FROM docker.io/nginxproxy/forego:0.18.1 AS forego

# Build the final image
FROM nginx:1.25.4-alpine
FROM docker.io/library/nginx:1.25.4-alpine

ARG NGINX_PROXY_VERSION
# Add DOCKER_GEN_VERSION environment variable because
Expand Down
6 changes: 3 additions & 3 deletions Dockerfile.debian
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM nginxproxy/docker-gen:0.11.2-debian AS docker-gen
FROM docker.io/nginxproxy/docker-gen:0.11.2-debian AS docker-gen

FROM nginxproxy/forego:0.18.1-debian AS forego
FROM docker.io/nginxproxy/forego:0.18.1-debian AS forego

# Build the final image
FROM nginx:1.25.4
FROM docker.io/library/nginx:1.25.4

ARG NGINX_PROXY_VERSION
# Add DOCKER_GEN_VERSION environment variable because
Expand Down

0 comments on commit 9fcd730

Please sign in to comment.