Geoappfolium / Dockerfile
Mohamed90's picture
Upload 23 files
05b8bc9
FROM python:3.9
WORKDIR /test1
COPY . /test1
RUN pip install --no-cache-dir --upgrade -r /test1/requirements.txt
COPY . .
CMD ["streamlit", "run", "/test1/app.py", "--address", "0.0.0.0", "--port", "7860"]