backend / Dockerfile
RohanVashisht's picture
Update Dockerfile
7a566a7 verified
raw
history blame contribute delete
436 Bytes
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"]