FROM vincentwang25/self-reasoning-base

# Set up task
COPY config.json /home/agent/config.json
COPY problems.txt /home/agent/problems.txt
COPY calculator.py /home/agent/calculator.py
RUN touch /home/agent/result.txt

# Give model agent permissions over everything in the home/agent folder
RUN chown agent:agent -R /home/agent

ENV HOME=/home/agent
WORKDIR /home/agent
