Skip to content
This repository has been archived by the owner on Nov 3, 2023. It is now read-only.

Commit

Permalink
Update to Python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
jdesrosiers committed Jul 23, 2021
1 parent 167336c commit 6d31099
Show file tree
Hide file tree
Showing 4 changed files with 125 additions and 180 deletions.
2 changes: 1 addition & 1 deletion .python-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.7.10
3.8
12 changes: 6 additions & 6 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
FROM fedora

# Install texlive
# Install system dependencies
RUN dnf update -y
RUN dnf install -y make latexmk texlive
RUN dnf install -y make latexmk texlive pipenv
RUN dnf install -y 'tex(fncychap.sty)' \
'tex(tabulary.sty)' \
'tex(framed.sty)' \
Expand All @@ -17,11 +17,11 @@ RUN dnf install -y 'tex(fncychap.sty)' \
'tex(bbding10.pfb)'
RUN texhash

# Install sphinx
RUN pip install "sphinx<2.0.0" sphinx-bootstrap-theme jsonschema

COPY . /code
WORKDIR /code

# Build and serve website
# Install Python dependencies
RUN pipenv install --system

# Build website
ENTRYPOINT ["./entrypoint.sh"]
2 changes: 1 addition & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ jsonschema = "*"
[dev-packages]

[requires]
python_version = "3.7.10"
python_version = "3.8"
Loading

0 comments on commit 6d31099

Please sign in to comment.