sidewalk-sam / Dockerfile
David Vaillant
asji
504e172
raw
history blame
No virus
338 Bytes
FROM python:3.9
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN apt update
RUN apt install libgdal-dev
RUN pip install --no-cache-dir --upgrade numpy
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY . .
EXPOSE 7860
CMD ["shiny", "run", "baby_shiny.py", "--host", "0.0.0.0", "--port", "7860"]