mirror of
https://github.com/by-jp/www.byjp.me.git
synced 2025-08-09 05:36:07 +01:00
11 lines
401 B
Docker
11 lines
401 B
Docker
FROM ghcr.io/rust-cross/rust-musl-cross:x86_64-unknown-linux-musl as agate
|
|
|
|
RUN cargo install agate
|
|
|
|
FROM scratch
|
|
COPY --from=agate /root/.cargo/bin/agate /bin/agate
|
|
COPY ./public/ /var/agate/content/
|
|
|
|
EXPOSE 1965
|
|
|
|
ENTRYPOINT ["/bin/agate", "--content", "/var/agate/content/", "--addr", "0.0.0.0:1965", "--only-tls13", "--central-conf", "--certs", "/var/agate/certificates/", "--hostname", "byjp.cc"]
|