mirror of
https://github.com/eried/portapack-mayhem.git
synced 2025-02-18 13:44:14 -05:00
Add Dockerfile to build (#252)
This commit is contained in:
parent
30db22828c
commit
b115bb33f2
14
dockerfile
Normal file
14
dockerfile
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
#Download base image.
|
||||||
|
#The ubuntu:latest tag points to the "latest LTS"
|
||||||
|
FROM ubuntu:latest
|
||||||
|
VOLUME /myvol
|
||||||
|
|
||||||
|
RUN apt-get update && \
|
||||||
|
apt-get install -y software-properties-common && \
|
||||||
|
apt-get install -y apt-transport-https
|
||||||
|
|
||||||
|
#
|
||||||
|
RUN add-apt-repository ppa:team-gcc-arm-embedded/ppa && apt-get update && apt-get install -y gcc-arm-embedded dfu-util cmake git python python-pip && apt-get -qy autoremove
|
||||||
|
RUN pip install pyyaml
|
||||||
|
|
||||||
|
CMD git clone https://github.com/furrtek/portapack-havoc.git portapack-havoc && cd portapack-havoc && mkdir build && cd build && cmake .. && make firmware && cp /portapack-havoc/firmware/portapack-h1-havoc.bin /myvol
|
Loading…
x
Reference in New Issue
Block a user