blob: 7f1b70006b7d1fa328e2f0fc8f3ad52c69e5ece1 (
plain)
1
2
3
4
5
6
7
8
9
10
|
FROM debian:latest
RUN apt-get update
RUN apt-get install -y libstdc++6
COPY prompt /app/prompt
COPY context.txt /app/context.txt
COPY models/ /app/models/
ENTRYPOINT ["bash"]
|