Sverd/image_captioner
0
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 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