Spaces:
Sleeping
Sleeping
Commit ·
bc8f051
1
Parent(s): fd8bd32
fix
Browse files- Dockerfile +1 -0
Dockerfile
CHANGED
|
@@ -35,6 +35,7 @@ COPY . /home/user/app
|
|
| 35 |
RUN python -m pip install --upgrade pip setuptools wheel
|
| 36 |
RUN if [ -f /home/user/app/requirements.txt ]; then \
|
| 37 |
pip install -r /home/user/app/requirements.txt; \
|
|
|
|
| 38 |
else \
|
| 39 |
# Install the project in editable mode so sources are available at runtime
|
| 40 |
pip install -e .[server]; \
|
|
|
|
| 35 |
RUN python -m pip install --upgrade pip setuptools wheel
|
| 36 |
RUN if [ -f /home/user/app/requirements.txt ]; then \
|
| 37 |
pip install -r /home/user/app/requirements.txt; \
|
| 38 |
+
pip install -e .[server];\
|
| 39 |
else \
|
| 40 |
# Install the project in editable mode so sources are available at runtime
|
| 41 |
pip install -e .[server]; \
|