File size: 323 Bytes
f1e0eeb
 
b1c97fe
f1e0eeb
 
 
 
 
 
1b547a5
f1e0eeb
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
FROM python:3-slim

RUN apt-get update && apt-get install -y git gcc build-essential

COPY script.sh .

RUN chmod +x ./script.sh
RUN chmod 777 .

RUN git  clone         https://github.com/Mihaiii/NegotiateBench.git
RUN cd NegotiateBench && pip install -r requirements.txt
RUN chmod 777 ./NegotiateBench

CMD ["./script.sh"]