osic-stacks/stacks/digital-ator.Dockerfile

15 lines
374 B
Docker
Raw Normal View History

2023-09-03 22:56:20 +00:00
# OSIC Stacks - analog-xk-arch
# Dev enviroment for analog circuits development using xschem and klayout.
FROM osicstack-base-arch
# Update packages
2023-09-06 14:27:28 +00:00
RUN sudo pacman -Syuq --noconfirm
2023-09-03 22:56:20 +00:00
# Install packages
2023-09-06 14:27:28 +00:00
RUN sudo aur-install verilator gtkwave base-devel cmake
2023-09-03 22:56:20 +00:00
# Clean cache
2023-09-06 14:27:28 +00:00
RUN sudo pacman -Scc
2023-09-03 22:56:20 +00:00
# Initialize the enviroment keeping container alive
CMD ["sleep", "infinity"]