mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-02-20 17:13:54 +08:00
7 lines
225 B
Docker
7 lines
225 B
Docker
FROM ubuntu:16.04
|
|
|
|
RUN apt-get update && apt-get install -y make python python-pip
|
|
COPY tests/safety/requirements.txt /panda/tests/safety/requirements.txt
|
|
RUN pip install -r /panda/tests/safety/requirements.txt
|
|
COPY . /panda
|