CV-gradio / Dockerfile
jimmyhealer's picture
Chore: add dockerfile and update requirments
b02baf0
raw
history blame contribute delete
147 Bytes
FROM python:3.12
WORKDIR /app
COPY ./requirements.txt requirements.txt
RUN pip install -r requirements.txt
COPY . /app
CMD ["python", "app.py"]