image_captioner / Dockerfile
Sverd's picture
upload from local pc
1352a28 verified
raw
history blame contribute delete
No virus
177 Bytes
FROM python:3.10
WORKDIR /app
ADD . /app
RUN pip install --no-cache-dir -r requirements.txt
EXPOSE 8000
# Run main.py when the container launches
CMD ["python", "main.py"]