From 169fcd305bd6ebb2d3ddcfdf266fd0291e00f0e8 Mon Sep 17 00:00:00 2001 From: 1resu <1resu@solidaris.me> Date: Sat, 18 Dec 2021 18:18:12 +0100 Subject: [PATCH] Rename secret_token to secret_key_base --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index dc66c0a..71c76b5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -27,7 +27,7 @@ RUN echo 'gem: --no-document' >> ~/.gemrc && \ # compile assets with temporary mysql server RUN export DATABASE_URL=mysql2://localhost/temp && \ - export SECRET_TOKEN=thisisnotimportantnow && \ + export SECRET_KEY_BASE=thisisnotimportantnow && \ export DEBIAN_FRONTEND=noninteractive && \ apt-get update && \ apt-get install -y mysql-server && \