mirror of
https://github.com/flipperdevices/flipperzero-firmware.git
synced 2026-03-23 00:27:03 +01:00
11 lines
197 B
Docker
11 lines
197 B
Docker
# syntax=docker/dockerfile-upstream:master-labs
|
|
FROM python:3.10 as builder
|
|
|
|
COPY ./* /build
|
|
|
|
WORKDIR /build
|
|
|
|
RUN pip3 install -r requirements-headless.txt
|
|
|
|
CMD pytest -v --gui=0 port=/dev/ttyACM0
|