analyzer / Dockerfile
baxin's picture
Update Dockerfile
431cdfb verified
raw
history blame contribute delete
254 Bytes
FROM python:3.10
RUN apt-get update && apt-get install -y git
RUN apt-get install libsystemd-dev
RUN apt-get install pkg-config
RUN git clone https://github.com/Opentrons/opentrons.git
WORKDIR /opentrons
RUN make setup-py
RUN make -C robot-server dev