add gui-container, rathole, snowflake

This commit is contained in:
Maciej Lebiest 2023-03-18 19:14:16 +01:00
parent daeba22664
commit 89a002f480
4 changed files with 113 additions and 0 deletions

16
rathole/Dockerfile Normal file
View file

@ -0,0 +1,16 @@
FROM registry.fedoraproject.org/fedora:37 as builder
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
FROM registry.fedoraproject.org/fedora-minimal:37
WORKDIR /
COPY --from=builder /rathole/target/release/rathole .
USER 1852:1852
ENTRYPOINT ["./rathole"]