fix: typo Docker Registry -> Docker Repository

This commit is contained in:
Julien Neuhart
2021-08-27 19:09:15 +02:00
parent 781094ab05
commit 40cc019a51
6 changed files with 25 additions and 25 deletions

View File

@@ -1,5 +1,5 @@
ARG GOLANG_VERSION
ARG DOCKER_REGISTRY
ARG DOCKER_REPOSITORY
ARG GOTENBERG_VERSION
ARG GOLANGCI_LINT_VERSION
@@ -7,7 +7,7 @@ FROM golang:$GOLANG_VERSION-stretch as golang
# We're extending the Gotenberg's Docker image because our code relies on external
# dependencies like Google Chrome, LibreOffice, etc.
FROM $DOCKER_REGISTRY/gotenberg:$GOTENBERG_VERSION
FROM $DOCKER_REPOSITORY/gotenberg:$GOTENBERG_VERSION
USER root