Image-Captioning / Dockerfile
VIKRAM989's picture
Add application file
40243b5
raw
history blame contribute delete
135 Bytes
FROM python:3.10
WORKDIR /app
COPY . /app
RUN pip install --no-cache-dir -r requirements.txt
EXPOSE 7860
CMD ["python", "main.py"]