koji commited on
Commit
9ca4676
·
1 Parent(s): bd4dbbc

add dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +8 -0
Dockerfile ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.10
2
+
3
+ RUN apt-get update && apt-get install -y git
4
+ RUN git clone https://github.com/Opentrons/opentrons.git
5
+ WORKDIR /opentrons
6
+
7
+ RUN make setup-py
8
+ RUN make -C robot-server dev