Skip to content

Commit 42826cc

Browse files
author
Nick Canzoneri
committed
Remove explicit requirements.txt from the dockerfile install
1 parent 469e150 commit 42826cc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Dockerfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,13 @@ FROM python:3.7.7-slim-buster
22

33
COPY .streamlit ~/
44

5-
COPY ./requirements.txt /app/requirements.txt
65
COPY ./README.md /app/README.md
76
COPY ./setup.py /app/setup.py
87
RUN mkdir /app/src
98

109
WORKDIR /app
1110

12-
RUN pip install -q -r requirements.txt
11+
RUN pip install -q .
1312

1413
COPY . ./
1514

docs/contributing/app-dev.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ streamlit run src/app.py
5959
- `Pipfile.lock`
6060
- `environment.yml`
6161
- `requirements.txt`
62+
- `setup.py`
6263

6364
### Documentation
6465

0 commit comments

Comments
 (0)