File size: 261 Bytes
ec3efd7
 
8abae36
ec3efd7
 
 
 
9891bfb
d30cebc
ec3efd7
242587c
ec3efd7
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
FROM python:3.9
WORKDIR /app
USER root

COPY ./requirements.txt /app/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /app/requirements.txt

ENV PORT=7860 \
    URL_GRADIO=https://rgres-drawing2map-api.hf.space/

COPY . .

CMD ["python",  "app.py"]