Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -26,7 +26,7 @@ RUN chown -R $USER_UID:$USER_GID /modelapi \
|
|
| 26 |
# Change to the user and do subnet installation
|
| 27 |
USER $USERNAME
|
| 28 |
|
| 29 |
-
RUN /bin/bash -c "python3 -m venv /modelapi/.venv && source /modelapi/.venv/bin/activate && pip3 install -e /modelapi/."
|
| 30 |
|
| 31 |
EXPOSE 6500
|
| 32 |
|
|
|
|
| 26 |
# Change to the user and do subnet installation
|
| 27 |
USER $USERNAME
|
| 28 |
|
| 29 |
+
RUN /bin/bash -c "python3 -m venv /modelapi/.venv && source /modelapi/.venv/bin/activate && pip3 install --no-cache-dir --prefer-binary -e /modelapi/."
|
| 30 |
|
| 31 |
EXPOSE 6500
|
| 32 |
|