CoolFace
Apppublic

Sverd/image_captioner

sourceHugging Faceapache-2.0updated 3y agoView on Hugging Face
0likes
Dockerfile13 linesDownload Raw Back to root
1FROM python:3.102 3WORKDIR /app4 5ADD . /app6 7RUN pip install --no-cache-dir -r requirements.txt8 9EXPOSE 800010 11# Run main.py when the container launches12CMD ["python", "main.py"]13