This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM coach-base:master as builder | |
| # prep gym and any of its related requirements. | |
| RUN pip3 install gym[atari,box2d,classic_control]==0.10.5 | |
| # add coach source starting with files that could trigger | |
| # re-build if dependencies change. | |
| RUN mkdir /root/src | |
| COPY setup.py /root/src/. | |
| COPY requirements.txt /root/src/. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| apiVersion: v1 | |
| kind: Pod | |
| metadata: | |
| name: parsec-pod | |
| spec: | |
| containers: | |
| # See https://github.com/Spirals-Team/benchmark-containers/tree/master/parsec-3.0 for more information on image. | |
| - image: spirals/parsec-3.0 | |
| command: ["/bin/bash"] | |
| # Change args to run the workload. |
NewerOlder