prompting-dashboard / Dockerfile
Kalei's picture
Update Dockerfile
ab9c566 verified
raw
history blame
182 Bytes
FROM python:3.10-bookworm
COPY . /app
WORKDIR /app
EXPOSE 10000
RUN pip install -r requirements.txt
RUN pip install numpy==2.0.1 pandas==2.2.2
ENTRYPOINT ["python", "server.py"]