Kilunga / Sentinel2App /Dockerfile
JohnNvula's picture
Upload 16 files
ca1b3c8 verified
Raw
History Blame Contribute Delete
285 Bytes
FROM python:3.9
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY . .
EXPOSE 7860
CMD ["shiny", "run", "app.py", "--host", "0.0.0.0", "--port", "7860"]
RUN mkdir -p /.config && chmod 777 /.config