.
continuous-integration/drone/push Build was killed Details

This commit is contained in:
Giles Bradshaw 2020-04-29 23:37:57 +01:00
parent c2ffce8122
commit 1ee5198251
3 changed files with 7 additions and 3 deletions

View File

@ -13,4 +13,6 @@ publicSecrets = [
"guacamole-postgres-user",
"sigyl-stack-root",
"sigyl-stack-name",
"ghost_mail_service",
"ghost_mail_user",
]

View File

@ -4,4 +4,5 @@ secretSecrets = [
"drone-rpc-secret",
"guacamole-postgres-password",
"ngrok-auth-token",
"ghost_mail_user",
]

View File

@ -1,7 +1,8 @@
FROM ghost
# USER root
RUN apt-get update
RUN apt-get install -y gettext
COPY config.production.json /var/lib/ghost/
COPY run.sh /
USER root
RUN apk update
RUN apk add gettext # enables envsubst
CMD ["sh" "run.sh"]