1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-11 10:29:01 +00:00
trezor-firmware/docker/emulator/Dockerfile

16 lines
258 B
Docker
Raw Normal View History

FROM python:3.7.1-stretch
WORKDIR /trezor-emulator
COPY ./ /trezor-emulator
RUN make vendor
RUN apt-get update
RUN apt-get install libusb-1.0-0
RUN pip3 install scons trezor
RUN make build_unix_noui
ENTRYPOINT ["emulator/run.sh"]
EXPOSE 21324/udp 21325