build:
docker build . -t fooey
run:
docker run -it --rm -e DISPLAY=10.0.0.231:0.0 fooey
private ip: ipconfig | findstr /R "IPv4.*[0-9]*\.[0-9]*\.[0-9]*\.[0-9]*"
for personal use; not liable
build:
docker build . -t fooey
run:
docker run -it --rm -e DISPLAY=10.0.0.231:0.0 fooey
private ip: ipconfig | findstr /R "IPv4.*[0-9]*\.[0-9]*\.[0-9]*\.[0-9]*"
for personal use; not liable
| FROM ubuntu:22.04 | |
| RUN apt-get update && \ | |
| apt-get install -y cmake && \ | |
| apt-get install -y make && \ | |
| apt-get install -y g++-11 && \ | |
| update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-11 11 && \ | |
| apt-get install -y git && \ | |
| apt-get install -y wget && \ | |
| apt-get install -y unzip | |
| RUN apt-get install -y libx11-dev | |
| WORKDIR /src | |
| COPY . /src | |
| RUN make | |
| ENTRYPOINT ["./exec"] |