ollama-server / Dockerfile
Mbonea-Mjema
ok
00c68f3
raw
history blame
168 Bytes
FROM python:latest
WORKDIR /usr/src/nginx
COPY . .
RUN pip install -r requirements.txt
CMD export PYTHONPATH="${PYTHONPATH}:./src" && python3 ./src/app.py
EXPOSE 8080