KlasifikasiBatik / Dockerfile
Stefaron's picture
update docker
31e7ef5 verified
raw
history blame contribute delete
191 Bytes
FROM python:3.9
WORKDIR /app
COPY . /app
RUN pip install --upgrade pip
RUN pip install --no-cache-dir -r requirements.txt
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]