mirror of
https://github.com/openhwgroup/cvw.git
synced 2025-06-28 01:32:49 -04:00
16 lines
No EOL
383 B
Text
16 lines
No EOL
383 B
Text
FROM wallysoc/toolchains_wally
|
|
|
|
ENV QUESTA=/cad/mentor/questa_sim-xxxx.x_x
|
|
ENV RUN_QUESTA=false
|
|
ENV USERNAME=cad
|
|
|
|
VOLUME [ "/home/${USERNAME}/cvw" ]
|
|
USER root
|
|
|
|
COPY --chown=${USERNAME}:${USERNAME} . /home/${USERNAME}
|
|
RUN chown -R ${USERNAME}:${USERNAME} /home/${USERNAME}
|
|
|
|
USER ${USERNAME}
|
|
WORKDIR /home/${USERNAME}/cvw
|
|
|
|
CMD [ "/bin/sh", "-c", "/home/${USERNAME}/run_regression.sh" ] |