Merge pull request #21587 from cevich/fix_podman_remote_image

[CI:DOCS] Remove disused Containerfile and docs
This commit is contained in:
openshift-merge-bot[bot] 2024-02-20 09:46:31 +00:00 committed by GitHub
commit 9fc45088cb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 0 additions and 35 deletions

View File

@ -1,10 +0,0 @@
FROM registry.access.redhat.com/ubi8/go-toolset:latest AS builder
WORKDIR /opt/app-root/src
COPY . .
RUN make podman-remote-static-linux_amd64
RUN GOOS=windows make podman-remote
RUN GOOS=darwin make podman-remote
FROM scratch
COPY --from=builder /opt/app-root/src/bin .
ENTRYPOINT ["/podman-remote-static-linux_amd64"]

View File

@ -1,25 +0,0 @@
podman-remote-images
====================
Overview
--------
This directory contains the containerfile for creating a container image which consist podman-remote binary
for each platform (win/linux/mac).
Users can copy those binaries onto the specific platforms using following instructions
- For Windows binary
```bash
$ podman cp $(podman create --name remote-temp quay.io/containers/podman-remote-artifacts:latest):/windows/podman.exe . && podman rm remote-temp
```
- For Linux binary
```bash
$ podman cp $(podman create --name remote-temp quay.io/containers/podman-remote-artifacts:latest):/podman-remote-static-linux_amd64 . && podman rm remote-temp
```
- For Mac binary
```bash
$ podman cp $(podman create --name remote-temp quay.io/containers/podman-remote-artifacts:latest):/darwin/podman . && podman rm remote-temp
```