File size: 436 Bytes
6beae05 7a566a7 6beae05 7a566a7 6beae05 7a566a7 6beae05 7a566a7 6beae05 7a566a7 6beae05 7a566a7 6beae05 7a566a7 6beae05 7a566a7 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | FROM fedora:latest
WORKDIR /workplace
RUN dnf install -y wget libmicrohttpd
RUN mkdir include
RUN wget -O server https://github.com/Zigistry/backend/releases/download/ZigistryBackend/server
RUN wget -O ./include/liblibsql.so https://github.com/Zigistry/backend/releases/download/ZigistryBackend/liblibsql.so
RUN chmod +x ./server
ENV LD_LIBRARY_PATH=/workplace/include:$LD_LIBRARY_PATH
EXPOSE 7860
CMD ["sh", "-c", "./server"] |