-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #28 from chizmw/dockerize
add Dockerfile; maybe for AWS Lambda later
- Loading branch information
Showing
7 changed files
with
42 additions
and
4 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,5 @@ | ||
kind: Added | ||
body: add Dockerfile; maybe for AWS Lambda later | ||
time: 2023-04-18T00:24:18.693135+01:00 | ||
custom: | ||
GithubIssue: "" |
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,5 @@ | ||
kind: Changed | ||
body: Change name of pre-commit workflow | ||
time: 2023-04-18T00:39:55.253127+01:00 | ||
custom: | ||
GithubIssue: "" |
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,5 @@ | ||
kind: Changed | ||
body: update astroid (2.15.2 -> 2.15.3) | ||
time: 2023-04-18T00:41:42.731661+01:00 | ||
custom: | ||
GithubIssue: "" |
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,20 @@ | ||
FROM python:3.11 | ||
|
||
RUN pip3 install --no-cache-dir poetry==1.4.2 | ||
ENV PYTHONPATH=${PYTHONPATH}:${PWD} | ||
RUN poetry config virtualenvs.create false | ||
|
||
WORKDIR /app | ||
|
||
COPY Makefile ./ | ||
COPY fonts ./fonts/ | ||
COPY gameinfo ./gameinfo/ | ||
COPY icons ./icons/ | ||
COPY templates ./templates/ | ||
|
||
COPY pyproject.toml ./ | ||
|
||
COPY README.md ./ | ||
COPY botcpdf ./botcpdf/ | ||
|
||
RUN poetry install --only main |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.