-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
systemctl start podman.socket podman-compose build podman-compose up
- Loading branch information
mike dupont
committed
Sep 29, 2023
1 parent
69cc8a2
commit 10941b2
Showing
4 changed files
with
22 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
FROM python:3.10-slim | ||
WORKDIR /opt/ai-ticket | ||
COPY pyproject.toml /opt/ai-ticket/ | ||
COPY setup.cfg /opt/ai-ticket/ | ||
COPY requirements.txt /opt/ai-ticket/ | ||
COPY ./src/ /opt/ai-ticket/src/ | ||
RUN pip install /opt/ai-ticket/ | ||
|
||
|
||
RUN apt update | ||
RUN apt install -y git | ||
RUN pip install --trusted-host pypi.python.org -r requirements.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
PyGithub | ||
python-dotenv |