Spaces:
Runtime error
Runtime error
File size: 386 Bytes
bee3f8a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
# 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
|