mirror of
https://github.com/openhwgroup/cvw
synced 2025-01-23 21:14:37 +00:00
13 lines
285 B
Docker
13 lines
285 B
Docker
|
FROM wallysoc/toolchains_wally
|
||
|
|
||
|
ENV QUESTA=/cad/mentor/questa_sim-xxxx.x_x
|
||
|
ENV RUN_QUESTA=false
|
||
|
ENV USERNAME=cad
|
||
|
|
||
|
VOLUME [ "/home/${USERNAME}/cvw" ]
|
||
|
|
||
|
COPY . /home/${USERNAME}
|
||
|
USER ${USERNAME}
|
||
|
WORKDIR /home/${USERNAME}/cvw
|
||
|
|
||
|
CMD [ "/bin/sh", "-c", "/home/${USERNAME}/run_regression.sh" ]
|