Skip to content

Commit

Permalink
fix: FROM path in Dockerfile recommendation
Browse files Browse the repository at this point in the history
Pulling from `argoproj/argocd:latest` uses the preferred registry from the user. If this is dockerhub, it will pull a very outdated image of argocd.
  • Loading branch information
jbouter authored Sep 11, 2024
1 parent 810f1fe commit e65d943
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ spec:
The following example builds an entirely customized repo-server from a Dockerfile, installing extra dependencies that may be needed for generating manifests.
```Dockerfile
FROM argoproj/argocd:latest
FROM quay.io/argoproj/argocd:latest

# Switch to root for the ability to perform install
USER root
Expand Down

0 comments on commit e65d943

Please sign in to comment.