Skip to content

Commit 6676801

Browse files
committed
Fix social-agent Docker build context paths
1 parent 1af2aa7 commit 6676801

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docker/social-agent/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ RUN set -eu; \
1111
rm -f /tmp/custom-setup.sh; \
1212
fi
1313

14-
COPY requirements.txt ./requirements.txt
14+
COPY docker/social-agent/requirements.txt ./requirements.txt
1515

1616
RUN pip install -r requirements.txt
1717

18-
COPY frankenstein.txt ./frankenstein.txt
19-
COPY run.py ./run.py
18+
COPY docker/social-agent/frankenstein.txt ./frankenstein.txt
19+
COPY docker/social-agent/run.py ./run.py
2020

21-
CMD python run.py
21+
CMD ["python", "run.py"]

0 commit comments

Comments
 (0)