add gui-container, rathole, snowflake
This commit is contained in:
parent
daeba22664
commit
89a002f480
4 changed files with 113 additions and 0 deletions
16
rathole/Dockerfile
Normal file
16
rathole/Dockerfile
Normal 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"]
|
Loading…
Add table
Add a link
Reference in a new issue