Forgot a few instructions in linuxfs docker image
This commit is contained in:
parent
53d46c078d
commit
699c55a826
2 changed files with 8 additions and 1 deletions
|
@ -1,8 +1,13 @@
|
||||||
FROM ubuntu:jammy
|
FROM ubuntu:jammy
|
||||||
|
|
||||||
|
LABEL author="Tara Piccari" maintainer="tarapiccari@gmail.com"
|
||||||
|
|
||||||
|
ENV DOCKER 1
|
||||||
|
ENV DEBIAN_FRONTEND=noninteractive
|
||||||
|
|
||||||
RUN apt-get update
|
RUN apt-get update
|
||||||
RUN apt-get full-upgrade -qy
|
RUN apt-get full-upgrade -qy
|
||||||
RUN apt-get install libgl1-mesa-dev libglu1-mesa-dev libpulse-dev build-essential python3-pip git libssl-dev libxinerama-dev libxrandr-dev libfontconfig-dev libfreetype6-dev gcc-11 cmake openjdk-17-jre
|
RUN apt-get install -y ibgl1-mesa-dev libglu1-mesa-dev libpulse-dev build-essential python3-pip git libssl-dev libxinerama-dev libxrandr-dev libfontconfig-dev libfreetype6-dev gcc-11 cmake openjdk-17-jre
|
||||||
|
|
||||||
RUN pip3 install --upgrade pip
|
RUN pip3 install --upgrade pip
|
||||||
RUN pip install llbase autobuild llsd
|
RUN pip install llbase autobuild llsd
|
||||||
|
|
|
@ -3,10 +3,12 @@ version: "3"
|
||||||
services:
|
services:
|
||||||
linuxbuilder:
|
linuxbuilder:
|
||||||
image: git.zontreck.com/ariascreations/buildenvironments:linux
|
image: git.zontreck.com/ariascreations/buildenvironments:linux
|
||||||
|
container_name: linuxbuilder
|
||||||
networks:
|
networks:
|
||||||
- buildenv
|
- buildenv
|
||||||
linuxfs:
|
linuxfs:
|
||||||
image: git.zontreck.com/ariascreations/buildenvironments:linuxfs
|
image: git.zontreck.com/ariascreations/buildenvironments:linuxfs
|
||||||
|
container_name: linuxfs
|
||||||
networks:
|
networks:
|
||||||
- buildenv
|
- buildenv
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue