Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Minor fixes to Dockerfile and docs #8108

Merged
merged 1 commit into from
Aug 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# limitations under the License.

# Velero binary build section
FROM --platform=$BUILDPLATFORM golang:1.22-bookworm as velero-builder
FROM --platform=$BUILDPLATFORM golang:1.22-bookworm AS velero-builder

ARG GOPROXY
ARG BIN
Expand Down Expand Up @@ -47,7 +47,7 @@ RUN mkdir -p /output/usr/bin && \
go clean -modcache -cache

# Restic binary build section
FROM --platform=$BUILDPLATFORM golang:1.22-bookworm as restic-builder
FROM --platform=$BUILDPLATFORM golang:1.22-bookworm AS restic-builder

ARG BIN
ARG TARGETOS
Expand Down
2 changes: 1 addition & 1 deletion site/content/docs/main/build-from-source.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ Optionally, set the `$VERSION` environment variable to change the image tag or `
```bash
make container
```
_Note: To build build container images for both `velero` and `velero-restore-helper`, run: `make all-containers`_
_Note: To build container images for both `velero` and `velero-restore-helper`, run: `make all-containers`_

### Publishing container images to a registry

Expand Down
2 changes: 1 addition & 1 deletion site/content/docs/v1.14/build-from-source.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ Optionally, set the `$VERSION` environment variable to change the image tag or `
```bash
make container
```
_Note: To build build container images for both `velero` and `velero-restore-helper`, run: `make all-containers`_
_Note: To build container images for both `velero` and `velero-restore-helper`, run: `make all-containers`_

### Publishing container images to a registry

Expand Down
Loading