2023-08-07 06:38:14 +00:00
|
|
|
# OSIC Stacks - analog-xm-arch
|
|
|
|
# Dev enviroment for analog circuits development using xschem and magic.
|
2023-09-06 14:22:16 +00:00
|
|
|
FROM osicstack-base-arch
|
2023-08-07 06:38:14 +00:00
|
|
|
|
|
|
|
# Update packages
|
2023-09-06 14:22:16 +00:00
|
|
|
RUN sudo pacman -Syuq --noconfirm
|
2023-08-07 06:38:14 +00:00
|
|
|
|
|
|
|
# Install packages
|
2023-09-06 14:22:16 +00:00
|
|
|
RUN sudo aur-install xschem magic
|
2023-08-07 06:38:14 +00:00
|
|
|
|
|
|
|
# Clean cache
|
2023-09-06 14:22:16 +00:00
|
|
|
RUN sudo pacman -Scc
|
2023-08-07 06:38:14 +00:00
|
|
|
|
|
|
|
# Initialize the enviroment keeping container alive
|
|
|
|
CMD ["sleep", "infinity"]
|