We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 469e150 commit 42826ccCopy full SHA for 42826cc
Dockerfile
@@ -2,14 +2,13 @@ FROM python:3.7.7-slim-buster
2
3
COPY .streamlit ~/
4
5
-COPY ./requirements.txt /app/requirements.txt
6
COPY ./README.md /app/README.md
7
COPY ./setup.py /app/setup.py
8
RUN mkdir /app/src
9
10
WORKDIR /app
11
12
-RUN pip install -q -r requirements.txt
+RUN pip install -q .
13
14
COPY . ./
15
docs/contributing/app-dev.md
@@ -59,6 +59,7 @@ streamlit run src/app.py
59
- `Pipfile.lock`
60
- `environment.yml`
61
- `requirements.txt`
62
+- `setup.py`
63
64
### Documentation
65
0 commit comments