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

Commit

Permalink
Update to fix Heron UI Jinja2 issue (#3777)
Browse files Browse the repository at this point in the history
  • Loading branch information
nicknezis authored Feb 26, 2022
1 parent 485ac31 commit ebd7cea
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 1 deletion.
2 changes: 2 additions & 0 deletions docker/compile/Dockerfile.centos8
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ FROM centos:centos8
# This is passed to the heron build command via the --config flag
ENV TARGET_PLATFORM linux

ENV LC_ALL en_US.utf8

RUN yum -y upgrade
RUN yum -y install \
ant \
Expand Down
3 changes: 3 additions & 0 deletions docker/compile/Dockerfile.debian10
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ FROM openjdk:11.0.6-jdk-buster
# This is passed to the heron build command via the --config flag
ENV TARGET_PLATFORM linux

ENV LC_ALL C.UTF-8
ENV LANG C.UTF-8

RUN apt-get update && apt-get -y install \
ant \
automake \
Expand Down
5 changes: 5 additions & 0 deletions docker/compile/Dockerfile.ubuntu18.04
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@ FROM ubuntu:18.04
# This is passed to the heron build command via the --config flag
ENV TARGET_PLATFORM linux

ARG DEBIAN_FRONTEND=noninteractive

ENV LC_ALL C.UTF-8
ENV LANG C.UTF-8

RUN apt-get update && apt-get -y install \
ant \
g++ \
Expand Down
3 changes: 3 additions & 0 deletions docker/compile/Dockerfile.ubuntu20.04
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ ENV TARGET_PLATFORM linux

ARG DEBIAN_FRONTEND=noninteractive

ENV LC_ALL C.UTF-8
ENV LANG C.UTF-8

RUN apt-get update && apt-get -y install \
ant \
g++ \
Expand Down
3 changes: 3 additions & 0 deletions docker/compile/Dockerfile.ubuntu22.04
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ ENV TARGET_PLATFORM ubuntu

ARG DEBIAN_FRONTEND=noninteractive

ENV LC_ALL C.UTF-8
ENV LANG C.UTF-8

RUN apt-get update && apt-get -y install \
ant \
g++ \
Expand Down
2 changes: 1 addition & 1 deletion heron/tools/ui/src/python/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ pex_library(
"requests==2.27.1",
"click==7.1.2",
"fastapi==0.60.1",
"jinja2==2.11.2",
"jinja2==3.0.3",
"aiofiles==0.5.0",
"uvicorn==0.11.7",
"uvloop==0.16.0",
Expand Down

0 comments on commit ebd7cea

Please sign in to comment.