ContainersWorkspace/rathole/Containerfile

17 lines
397 B
Text
Raw Permalink Normal View History

2023-04-23 20:20:41 +02:00
FROM registry.fedoraproject.org/fedora:38 as builder
2023-03-18 19:14:16 +01: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 20:20:41 +02:00
FROM registry.fedoraproject.org/fedora-minimal:38
2023-03-18 19:14:16 +01:00
WORKDIR /
COPY --from=builder /rathole/target/release/rathole .
USER 1852:1852
ENTRYPOINT ["./rathole"]