osic-stacks/stacks/analog-tools/Dockerfile
2023-09-22 05:05:39 -03:00

12 lines
243 B
Docker

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