osic-stacks/stacks/analog-heavy.Dockerfile

31 lines
592 B
Docker
Raw Permalink Normal View History

2023-09-24 18:54:09 +00:00
# OSIC Stacks - analog-heavy
# Dev environment for analog design.
ARG BASE_IMG=osicstacks-base-desktop
2023-09-21 07:48:48 +00:00
FROM $BASE_IMG as analog-heavy
2023-09-06 20:32:45 +00:00
# Update packages
RUN sudo pacman -Syuq --noconfirm
# Install packages
2023-09-24 18:54:09 +00:00
RUN sudo aur-install \
xschem \
glu \
magic-git \
klayout \
netgen-lvs-git
2023-09-06 20:32:45 +00:00
# Clean cache
RUN sudo pacman -Scc
2023-09-21 07:48:48 +00:00
# - 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"]