Finalize web stack of the other images
This commit is contained in:
parent
71a576c373
commit
3df8e75927
@ -1,6 +1,7 @@
|
||||
# OSIC Stacks - analog-heavy-arch
|
||||
# Dev enviroment for analog circuits development using xschem and klayout.
|
||||
FROM osicstack-base-arch
|
||||
ARG BASE_IMG=osicstacks-base-native
|
||||
FROM $BASE_IMG as analog-heavy
|
||||
|
||||
# Update packages
|
||||
RUN sudo pacman -Syuq --noconfirm
|
||||
@ -11,5 +12,14 @@ RUN sudo aur-install xschem glu magic klayout
|
||||
# Clean cache
|
||||
RUN sudo pacman -Scc
|
||||
|
||||
# Initialize the enviroment keeping container alive
|
||||
CMD ["sleep", "infinity"]
|
||||
# - Desktop build
|
||||
FROM analog-heavy as analog-heavy-desktop
|
||||
|
||||
# Initialize the environment keeping container alive
|
||||
CMD ["sleep", "infinity"]
|
||||
|
||||
# - Web build
|
||||
FROM analog-heavy as analog-heavy-web
|
||||
|
||||
# Run VNC server & desktop environment
|
||||
CMD ["startserver"]
|
||||
|
@ -1,6 +1,7 @@
|
||||
# OSIC Stacks - analog-xm-arch
|
||||
# OSIC Stacks - analog-xm
|
||||
# Dev enviroment for analog circuits development using xschem and magic.
|
||||
FROM osicstack-base-arch
|
||||
ARG BASE_IMG=osicstacks-base-native
|
||||
FROM $BASE_IMG as analog-xm
|
||||
|
||||
# Update packages
|
||||
RUN sudo pacman -Syuq --noconfirm
|
||||
@ -11,5 +12,14 @@ RUN sudo aur-install xschem magic
|
||||
# Clean cache
|
||||
RUN sudo pacman -Scc
|
||||
|
||||
# Initialize the enviroment keeping container alive
|
||||
CMD ["sleep", "infinity"]
|
||||
# - Desktop build
|
||||
FROM analog-xm as analog-xm-desktop
|
||||
|
||||
# Initialize the environment keeping container alive
|
||||
CMD ["sleep", "infinity"]
|
||||
|
||||
# - Web build
|
||||
FROM analog-xm as analog-xm-web
|
||||
|
||||
# Run VNC server & desktop environment
|
||||
CMD ["startserver"]
|
||||
|
@ -1,6 +1,7 @@
|
||||
# OSIC Stacks - analog-xk-arch
|
||||
# Dev enviroment for analog circuits development using xschem and klayout.
|
||||
FROM osicstack-base-arch
|
||||
ARG BASE_IMG=osicstacks-base-native
|
||||
FROM $BASE_IMG as digital-ator
|
||||
|
||||
# Update packages
|
||||
RUN sudo pacman -Syuq --noconfirm
|
||||
@ -11,5 +12,14 @@ RUN sudo aur-install verilator gtkwave base-devel cmake
|
||||
# Clean cache
|
||||
RUN sudo pacman -Scc
|
||||
|
||||
# Initialize the enviroment keeping container alive
|
||||
CMD ["sleep", "infinity"]
|
||||
# - Desktop build
|
||||
FROM digital-ator as digital-ator-desktop
|
||||
|
||||
# Initialize the environment keeping container alive
|
||||
CMD ["sleep", "infinity"]
|
||||
|
||||
# - Web build
|
||||
FROM digital-ator as digital-ator-web
|
||||
|
||||
# Run VNC server & desktop environment
|
||||
CMD ["startserver"]
|
||||
|
Loading…
Reference in New Issue
Block a user