Spaces:
Runtime error
Runtime error
Commit
·
4ef39ac
1
Parent(s):
4b5f3ec
Upload Dockerfile with huggingface_hub
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -21,7 +21,7 @@ WORKDIR $HOME/app
|
|
21 |
# package, the second call will be a no-op.
|
22 |
RUN python -m pip install lilac[all]
|
23 |
|
24 |
-
# Install from the local wheel. This will be a no-op if the wheel is not found.
|
25 |
COPY --chown=user /dist ./dist/
|
26 |
RUN python -m pip install --find-links=dist --upgrade lilac[all]
|
27 |
|
|
|
21 |
# package, the second call will be a no-op.
|
22 |
RUN python -m pip install lilac[all]
|
23 |
|
24 |
+
# Install from the local wheel inside ./dist. This will be a no-op if the wheel is not found.
|
25 |
COPY --chown=user /dist ./dist/
|
26 |
RUN python -m pip install --find-links=dist --upgrade lilac[all]
|
27 |
|