notdiamond2api / Dockerfile
smgc's picture
Update Dockerfile
eee289f verified
raw
history blame
178 Bytes
FROM python:3.9-slim
WORKDIR /app
RUN pip install --no-cache-dir flask flask-cors requests tiktoken cachetools
COPY . .
EXPOSE 3000
CMD flask run --host=0.0.0.0 --port=3000