Dockerfile 207 B

1234567891011
  1. FROM python:3.7.15-slim
  2. WORKDIR ./python_physical_world_v3
  3. ADD . .
  4. RUN pip install -r requirements.txt
  5. WORKDIR ./python_physical_world_v3/physical_world_exporter
  6. CMD ["python", "-u","./start-linux.py"]