prompting-dashboard / Dockerfile
Kalei's picture
Remove Forcing numpy and pandas
134ac54 verified
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"]