From 5e2b8c6a1eb888ace715ffcbfd8254cdb79b5bce Mon Sep 17 00:00:00 2001 From: Ali BARIN Date: Sun, 9 Oct 2022 10:12:24 +0200 Subject: [PATCH] chore: update cli version with 0.1.5 in Dockerfiles --- docker/images/plain/Dockerfile | 2 +- docker/images/wait-for-postgres/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/images/plain/Dockerfile b/docker/images/plain/Dockerfile index 71657d57..48129e55 100644 --- a/docker/images/plain/Dockerfile +++ b/docker/images/plain/Dockerfile @@ -2,4 +2,4 @@ FROM node:16 WORKDIR /automatisch -RUN yarn global add @automatisch/cli@0.1.4 +RUN yarn global add @automatisch/cli@0.1.5 diff --git a/docker/images/wait-for-postgres/Dockerfile b/docker/images/wait-for-postgres/Dockerfile index 1ef998f2..33c66b6d 100644 --- a/docker/images/wait-for-postgres/Dockerfile +++ b/docker/images/wait-for-postgres/Dockerfile @@ -9,7 +9,7 @@ RUN mkdir -p /automatisch/storage RUN touch /automatisch/storage/.env RUN echo "ENCRYPTION_KEY=$(openssl rand -base64 36)" >> /automatisch/storage/.env RUN echo "APP_SECRET_KEY=$(openssl rand -base64 36)" >> /automatisch/storage/.env -RUN yarn global add @automatisch/cli@0.1.4 +RUN yarn global add @automatisch/cli@0.1.5 EXPOSE 3000 CMD sh /automatisch/wait-for-postgres.sh automatisch start --env-file=/automatisch/storage/.env