Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 6 additions & 10 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,15 +1,11 @@
FROM python:3.7.7-slim-buster

COPY .streamlit ~/

COPY ./README.md /app/README.md
COPY ./setup.py /app/setup.py
RUN mkdir /app/src

RUN mkdir /app
WORKDIR /app

COPY .streamlit ~/
COPY README.md .
COPY setup.py .
COPY settings.cfg .
COPY src src
RUN pip install -q .

COPY . ./

CMD ["streamlit", "run", "src/app.py"]