mirror of
https://github.com/containers/podman.git
synced 2025-07-02 00:30:00 +08:00
Remove disused Containerfile and docs
Fixes: #21574 The documentation for this image references a quay repository that doesn't exist. It doesn't appear any of these files have been touched since late 2022. Instead of updating the docs, let's just remove the source. It's trivial to recreate if anybody actually needs it for something. Users needing to access remote podman can simply use the `podman` binary present in existing images `quay.io/containers/podman`, `quay.io/podman/stable`, etc. Signed-off-by: Chris Evich <cevich@redhat.com>
This commit is contained in:
@ -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"]
|
@ -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
|
||||
```
|
Reference in New Issue
Block a user