Create Dockerfile

This commit is contained in:
VfBfoerst 2024-01-30 12:25:38 +01:00 committed by GitHub
parent 23cc414312
commit 8c07e30f17
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 20 additions and 0 deletions

20
Dockerfile Normal file
View File

@ -0,0 +1,20 @@
FROM python:3.11
# install necessary tools into the base image and download git repository
RUN apt update && apt install -y git apache2 && git clone https://github.com/ParisNeo/ollama_proxy_server.git
# change working directory to cloned git repository
WORKDIR ollama_proxy_server
# install all requirements
RUN pip3 install -e .
# copy config.ini and authorized_users.txt into project working directory
COPY config.ini .
COPY authorized_users.txt .
# start the proxy server as entrypoint
ENTRYPOINT ["ollama_proxy_server"]
# set command line parameters
CMD ["--config", "./config.ini", "--users_list", "./authorized_users.txt", "--port", "8080"]