From f72f7b4ad6e434e0a709a5c1ebf51669f4d9a7eb Mon Sep 17 00:00:00 2001 From: Vri Date: Thu, 4 May 2023 20:19:58 +0200 Subject: [PATCH] fix FROM --- container/base/Dockerfile | 2 +- container/deploy/Dockerfile | 2 +- container/develop/Dockerfile | 2 +- container/test/Dockerfile | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/container/base/Dockerfile b/container/base/Dockerfile index 47b32f2..d99ca51 100755 --- a/container/base/Dockerfile +++ b/container/base/Dockerfile @@ -2,7 +2,7 @@ # ~~~ BASE IMAGE ~~~ # ~~~~~~~~~~~~~~~~~~ -FROM docker.io/ruby:3.2.2-alpine3.17 AS base +FROM docker.io/ruby:3.2.2-alpine3.17 RUN apk update && apk add \ build-base \ diff --git a/container/deploy/Dockerfile b/container/deploy/Dockerfile index 57acd43..23b4284 100755 --- a/container/deploy/Dockerfile +++ b/container/deploy/Dockerfile @@ -2,7 +2,7 @@ # ~~~ DEPLOY IMAGE ~~~ # ~~~~~~~~~~~~~~~~~~~~ -FROM base AS deploy +FROM code.cozy.town/codeforleipzig/stadtratmonitor:latest-base WORKDIR /home/srm/app/ diff --git a/container/develop/Dockerfile b/container/develop/Dockerfile index a8ce854..7006de5 100755 --- a/container/develop/Dockerfile +++ b/container/develop/Dockerfile @@ -2,7 +2,7 @@ # ~~~ DEVELOP IMAGE ~~~ # ~~~~~~~~~~~~~~~~~~~~~ -FROM base AS development +FROM code.cozy.town/codeforleipzig/stadtratmonitor:latest-base RUN bundle config without test RUN bundle update diff --git a/container/test/Dockerfile b/container/test/Dockerfile index 668eca9..60579b8 100755 --- a/container/test/Dockerfile +++ b/container/test/Dockerfile @@ -2,7 +2,7 @@ # ~~~ TEST IMAGE ~~~ # ~~~~~~~~~~~~~~~~~~~~~ -FROM base AS testing +FROM code.cozy.town/codeforleipzig/stadtratmonitor:latest-base RUN bundle update RUN bundle install