Skip to content

Commit

Permalink
Merge pull request #23 from maxkratz/feature/python
Browse files Browse the repository at this point in the history
Adds 2023-python variant
  • Loading branch information
maxkratz committed Aug 4, 2023
2 parents 127d0ed + b4cca06 commit dfa6837
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-and-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
needs: [build-and-push-base]
strategy:
matrix:
year: [2017, 2018, 2019, 2020, 2021, 2022, 2022-gradle, 2023-gradle]
year: [2017, 2018, 2019, 2020, 2021, 2022, 2022-gradle, 2023-gradle, 2023-python]
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-only.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
needs: [build-base]
strategy:
matrix:
year: [2017, 2018, 2019, 2020, 2021, 2022, 2022-gradle, 2023-gradle]
year: [2017, 2018, 2019, 2020, 2021, 2022, 2022-gradle, 2023-gradle, 2023-python]
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down
14 changes: 14 additions & 0 deletions 2023-python/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# texlive base image
FROM maxkratz/texlive:2023
LABEL maintainer="Max Kratz <[email protected]>"

# Install Python 3.x
RUN apt-get update -q && \
apt-get install -yq \
python3 python3-pip

# Remove apt lists (for storage efficiency)
RUN rm -rf /var/lib/apt/lists/*

WORKDIR /data
CMD ["bash"]
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ Currently, there are the following tags published:
| latest | Newest (stable) TeX Live version available |
| 2023 | TeX Live version 2023 |
| 2023-gradle | TeX Live version 2023 + OpenJDK 17 + Gradle |
| 2023-python | TeX Live version 2023 + Python 3 + pip |
| 2022 | TeX Live version 2022 (from archive) |
| 2022-gradle | TeX Live version 2022 + OpenJDK 17 + Gradle (from archive) |
| 2021 | TeX Live version 2021 (from archive) |
Expand Down

0 comments on commit dfa6837

Please sign in to comment.