Ivanbigode/decoder
0
1FROM python:3.122 3WORKDIR /code4 5COPY ./requirements.txt /code/requirements.txt6 7RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt8 9COPY . .10 11EXPOSE 786012 13CMD ["shiny", "run", "app.py", "--host", "0.0.0.0", "--port", "7860"]