diff --git a/Dockerfile b/Dockerfile index 7932624..3a5fc01 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,6 +12,11 @@ RUN apt-get update && \ && \ rm -rf /var/lib/apt/lists/* +# CVE-2022-1292 openssl fix +RUN apt-get update && \ + apt-get --only-upgrade install openssl libssl1.1 -y && \ + rm -rf /var/lib/apt/lists/* + RUN mkdir -p /opt WORKDIR /opt diff --git a/app-spec.yml b/app-spec.yml index 52ae5ed..32c6f09 100644 --- a/app-spec.yml +++ b/app-spec.yml @@ -38,5 +38,5 @@ services: instance_count: 1 instance_size_slug: basic-s name: carbon-dashboard - run_command: gunicorn --worker-tmp-dir /dev/shm --timeout 120 src.apps.tco2_dashboard.app:server + run_command: gunicorn --worker-tmp-dir /dev/shm --timeout 180 src.apps.tco2_dashboard.app:server source_dir: /