bla commited on
Commit
6952f34
·
verified ·
1 Parent(s): 178a577

Update Dockerfile

Browse files
Files changed (1) hide show
  1. 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
- pip install --no-cache-dir autoawq
 
 
 
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