baxin commited on
Commit
0c7fc68
·
1 Parent(s): 0e76590

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -3,8 +3,8 @@ FROM tiangolo/uvicorn-gunicorn-fastapi:python3.9-slim
3
  # need to force reinstall because of dependeincies
4
  RUN pip install --no-cache-dir --upgrade pip && \
5
  pip install --no-cache-dir fastapi uvicorn && \
6
- pip install --no-cache-dir --upgrade --force-reinstall opentrons
7
- python -m pip install 'opentrons-hardware @ git+https://github.com/Opentrons/opentrons@f6b79cb8d3eb3ecd4a1c794cfbdb25cee199526d#subdirectory=hardware
8
 
9
  RUN useradd -m -u 1000 user
10
 
 
3
  # need to force reinstall because of dependeincies
4
  RUN pip install --no-cache-dir --upgrade pip && \
5
  pip install --no-cache-dir fastapi uvicorn && \
6
+ pip install --no-cache-dir --upgrade --force-reinstall opentrons && \
7
+ pip install --no-cache-dir opentrons-hardware@git+https://github.com/Opentrons/opentrons@f6b79cb8d3eb3ecd4a1c794cfbdb25cee199526d#subdirectory=hardware
8
 
9
  RUN useradd -m -u 1000 user
10