-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathDockerfile
More file actions
28 lines (22 loc) · 817 Bytes
/
Dockerfile
File metadata and controls
28 lines (22 loc) · 817 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# begin Dockerfile
# If you need Python 3 and the GitHub CLI, then use:
FROM cicirello/pyaction:4
# If all you need is Python 3, use:
# FROM cicirello/pyaction-lite:3
# If Python 3 + git is sufficient, then use:
# FROM cicirello/pyaction:3
# To pull from the GitHub Container Registry instead, use one of these:
# FROM ghcr.io/cicirello/pyaction-lite:3
# FROM ghcr.io/cicirello/pyaction:4
# FROM ghcr.io/cicirello/pyaction:3
COPY entrypoint.py /entrypoint.py
COPY requirements.txt /requirements.txt
COPY prompt.py /prompt.py
COPY llm_client.py /llm_client.py
COPY llm_configs.py /llm_configs.py
COPY llm_utils.py /llm_utils.py
COPY locale/ /locale/
RUN python3 -m pip install --upgrade pip
RUN python3 -m pip install --no-cache-dir --requirement /requirements.txt
ENTRYPOINT ["/entrypoint.py"]
# end Dockerfile