# Use an official Python runtime as a parent image FROM python:3.7.15 # Set the working directory in the container to /app WORKDIR /app # Clone the Opentrons repository RUN git clone https://github.com/Opentrons/opentrons.git # Change into the cloned directory WORKDIR /app/opentrons # Install dependencies and setup RUN make setup-py # Run the server RUN make -C robot-server dev