osic-stacks/stacks/analog-tools/Dockerfile
2023-09-27 17:15:01 -03:00

14 lines
342 B
Docker

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