osic-stacks/stacks/chipathon-tools/Dockerfile

14 lines
349 B
Docker
Raw Normal View History

ARG BASE_IMG=heavy-desktop
FROM $BASE_IMG as chipathon-tools
2023-09-22 07:02:53 +00:00
# Add scripts
2023-09-27 20:15:01 +00:00
COPY --chown=designer:designer --chmod=755 scripts/install-open-pdks.sh .
2023-09-22 07:02:53 +00:00
RUN ./install-open-pdks.sh
2023-09-27 20:15:01 +00:00
COPY --chown=designer:designer --chmod=755 scripts/* .
RUN ./patch-open-pdks.sh
2023-09-22 07:02:53 +00:00
RUN rm *.sh
# Initialize the enviroment keeping container alive
CMD ["sleep", "infinity"]