File size: 631 Bytes
6beae05 7a566a7 6beae05 fd5ae85 6beae05 7a566a7 6beae05 bf87e27 6beae05 fd5ae85 28f3218 fd5ae85 6beae05 7a566a7 6beae05 7a566a7 6beae05 5ede8ab | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | FROM fedora:latest
WORKDIR /workplace
RUN dnf install -y wget libmicrohttpd unzip
RUN mkdir include
RUN wget -O server https://github.com/Zigistry/api/releases/download/api-binary/server
RUN wget -O ./a.zip https://github.com/tursodatabase/libsql-c/releases/download/v0.3.4/x86_64-unknown-linux-gnu-release.zip
RUN wget -O ./zigistry.db https://huggingface.co/buckets/Zigistry/Zigistry/resolve/zigistry.db?download=true
RUN unzip ./a.zip
RUN cp ./liblibsql.so ./include/
RUN chmod +x ./server
ENV LD_LIBRARY_PATH=/workplace/include:$LD_LIBRARY_PATH
EXPOSE 7860
COPY start.sh .
RUN chmod +x start.sh
CMD ["./start.sh"] |