prompting-dashboard / Dockerfile
wojtek-opentensor
Create dockerfile for prompting-api
73617f9
raw
history blame
139 Bytes
FROM python:3.10-bookworm
COPY . /app
WORKDIR /app
EXPOSE 10000
RUN pip install -r requirements.txt
ENTRYPOINT ["python", "server.py"]