Skip to content

Commit

Permalink
Workaround jinja issue with python3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
tskisner committed May 16, 2020
1 parent 10e4b3d commit ce5a1cd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion templates/docker-debian.in
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ COPY cmbenv /home/cmbenv/

# Precompile all python modules

RUN python3 -m compileall -q "@AUX_PREFIX@/lib/python@PYVERSION@/site-packages"
RUN python3 -m compileall -q "@AUX_PREFIX@/lib/python@PYVERSION@/site-packages" -x ".*jinja.*"

# ======================================

Expand Down
2 changes: 1 addition & 1 deletion templates/docker-ubuntu.in
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ RUN mkdir -p "@AUX_PREFIX@/lib/python@PYVERSION@/site-packages"

# Precompile all python modules

RUN python3 -m compileall -q "@AUX_PREFIX@/lib/python@PYVERSION@/site-packages"
RUN python3 -m compileall -q "@AUX_PREFIX@/lib/python@PYVERSION@/site-packages" -x ".*jinja.*"

# ======================================

Expand Down

0 comments on commit ce5a1cd

Please sign in to comment.