Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +4 -1
Dockerfile
CHANGED
@@ -29,7 +29,10 @@ RUN pip install --no-cache-dir --upgrade pip && \
|
|
29 |
pillow \
|
30 |
pydantic && \
|
31 |
# Finally install autoawq
|
32 |
-
|
|
|
|
|
|
|
33 |
|
34 |
# Copy application files
|
35 |
COPY --chown=user:user . /app
|
|
|
29 |
pillow \
|
30 |
pydantic && \
|
31 |
# Finally install autoawq
|
32 |
+
# Install autoawq from wheel
|
33 |
+
pip3 install --no-cache-dir \
|
34 |
+
--find-links https://github.com/casper-hansen/AutoAWQ/releases/download/v0.2.8/ \
|
35 |
+
autoawq==0.2.8
|
36 |
|
37 |
# Copy application files
|
38 |
COPY --chown=user:user . /app
|