Spaces:
Sleeping
Sleeping
Commit ·
6db6925
1
Parent(s): df28b26
docker fixes
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
|
@@ -22,6 +22,9 @@ RUN conda install -y -c conda-forge \
|
|
| 22 |
python-multipart \
|
| 23 |
&& conda clean -afy
|
| 24 |
|
|
|
|
|
|
|
|
|
|
| 25 |
# Copy app code
|
| 26 |
COPY . /code
|
| 27 |
|
|
|
|
| 22 |
python-multipart \
|
| 23 |
&& conda clean -afy
|
| 24 |
|
| 25 |
+
# Install Firebase Admin via pip (not always in conda-forge)
|
| 26 |
+
RUN pip install firebase-admin
|
| 27 |
+
|
| 28 |
# Copy app code
|
| 29 |
COPY . /code
|
| 30 |
|