osic-stacks/stacks/chipathon-tools/Dockerfile
Aquiles Viza d79329a89e
All checks were successful
release / build-base (push) Successful in 25m6s
release / build-digital-icarus (push) Successful in 2h32m38s
release / build-digital-ator (push) Successful in 2h35m44s
release / build-analog-xk (push) Successful in 2h39m15s
release / build-analog-xm (push) Successful in 2h39m19s
release / build-analog-heavy (push) Successful in 2h39m23s
release / build-digital-heavy (push) Successful in 52m52s
release / build-heavy (push) Successful in 53m13s
release / build-chipathon-tools (push) Successful in 2h7m12s
Separate pdks patchs, fixed some troubles
2023-10-08 00:15:54 -03:00

15 lines
433 B
Docker

ARG BASE_IMG=heavy-desktop
FROM $BASE_IMG as chipathon-tools
# Add scripts
COPY --chown=designer:designer --chmod=755 stacks/chipathon-tools/scripts/install-open-pdks.sh .
RUN ./install-open-pdks.sh
COPY --chown=designer:designer --chmod=755 stacks/chipathon-tools/scripts/* .
RUN ./patch-open-pdks-gf180.sh
RUN ./patch-open-pdks-sky130.sh
RUN rm *.sh
# Initialize the enviroment keeping container alive
CMD ["sleep", "infinity"]