first
This commit is contained in:
commit
5c5295e519
|
@ -0,0 +1 @@
|
||||||
|
repo/*
|
|
@ -0,0 +1,6 @@
|
||||||
|
# syntax=docker/dockerfile:1
|
||||||
|
|
||||||
|
FROM ubuntu:mantic
|
||||||
|
COPY config.sh /config.sh
|
||||||
|
RUN /config.sh
|
||||||
|
CMD /bin/bash
|
|
@ -0,0 +1,14 @@
|
||||||
|
|
||||||
|
# to build the container image:
|
||||||
|
|
||||||
|
./build.sh
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
run the container:
|
||||||
|
|
||||||
|
docker run --rm -it -v repo:/rusefi --name rusefi_build rusefi_build:0.1
|
||||||
|
|
||||||
|
|
||||||
|
container will be removed upon exit
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
docker build . -t rusefi_build:0.1
|
|
@ -0,0 +1,3 @@
|
||||||
|
apt-get -y update
|
||||||
|
apt-get -y install make automake autoconf gcc-12-arm-linux-gnueabi - gcc-12-arm-linux-gnueabi-base gcc-arm-none-eabi binutils-arm-none-eabi git nano openjdk-22-jdk-headless
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
docker run --rm -it -v ./repo:/rusefi --name rusefi_build rusefi_build:0.1
|
Loading…
Reference in New Issue