CoolFace
Apppublic

Minjin1050/mn-geocoding-api

sourceHugging Faceupdated 9mo agoView on Hugging Face
0likes
Dockerfile6 linesDownload Raw Back to root
1FROM python:3.92WORKDIR /code3COPY ./requirements.txt /code/requirements.txt4RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt5COPY . .6CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]