You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trezor-firmware/core/docker/emulator/Dockerfile

16 lines
258 B

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