ContainersWorkspace/rathole/Containerfile

17 lines
397 B
Text
Raw Normal View History

2023-04-23 18:20:41 +00:00
FROM registry.fedoraproject.org/fedora:38 as builder
2023-03-18 18:14:16 +00:00
WORKDIR /
RUN dnf clean all && \
dnf install -y git cargo openssl-devel && \
git clone https://github.com/rapiz1/rathole.git && \
cd ./rathole && \
cargo build --release
2023-04-23 18:20:41 +00:00
FROM registry.fedoraproject.org/fedora-minimal:38
2023-03-18 18:14:16 +00:00
WORKDIR /
COPY --from=builder /rathole/target/release/rathole .
USER 1852:1852
ENTRYPOINT ["./rathole"]