agate

Simple gemini server for static files
git clone https://github.com/mbrubeck/agate.git
Log | Files | Refs | README

commit 7d7abce9a3b0680f927a6e53f45e7459278e61a1
parent 1d0284e888b20228f5865a0b8d2ece018198a5a9
Author: Ben K <ben-k@tutanota.com>
Date:   Sat, 10 Apr 2021 14:24:46 +0200

going back to compiling from source but with fewer layers

Diffstat:
Mtools/docker/Dockerfile | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/docker/Dockerfile b/tools/docker/Dockerfile @@ -1,5 +1,5 @@ FROM alpine:latest -RUN wget https://github.com/mbrubeck/agate/releases/download/v3.0.2/agate.$(uname -m)-unknown-linux-gnu.gz && gunzip agate.$(uname -m)-unknown-linux-gnu.gz && mv agate.$(uname -m)-unknown-linux-gnu /agate && ls && chmod +x /agate +RUN apk add cargo && wget https://github.com/mbrubeck/agate/archive/refs/tags/v3.0.2.tar.gz && tar xzf v3.0.2.tar.gz && mv /agate-3.0.2 /agate && cd agate && cargo build --release CMD /agate --content /gmi/ \ --hostname $GEMINI_HOST \ --lang $GEMINI_LANG