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 Dec 12, 2023
1 parent 9a4806d commit 327a153
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM nginxproxy/docker-gen:0.10.7-debian AS docker-gen
FROM docker.io/nginxproxy/docker-gen:0.10.7-debian AS docker-gen

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

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

ARG NGINX_PROXY_VERSION
# Add DOCKER_GEN_VERSION environment variable because
Expand Down
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.10.7 AS docker-gen
FROM docker.io/nginxproxy/docker-gen:0.10.7 AS docker-gen

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

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

ARG NGINX_PROXY_VERSION
# Add DOCKER_GEN_VERSION environment variable because
Expand Down

0 comments on commit 327a153

Please sign in to comment.