This commit is contained in:
Vri 🌈 2023-05-04 20:19:58 +02:00
parent ccb7ad1539
commit f72f7b4ad6
Signed by: vrifox
GPG key ID: D40098E5B60B2197
4 changed files with 4 additions and 4 deletions

View file

@ -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 \

View file

@ -2,7 +2,7 @@
# ~~~ DEPLOY IMAGE ~~~
# ~~~~~~~~~~~~~~~~~~~~
FROM base AS deploy
FROM code.cozy.town/codeforleipzig/stadtratmonitor:latest-base
WORKDIR /home/srm/app/

View file

@ -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

View file

@ -2,7 +2,7 @@
# ~~~ TEST IMAGE ~~~
# ~~~~~~~~~~~~~~~~~~~~~
FROM base AS testing
FROM code.cozy.town/codeforleipzig/stadtratmonitor:latest-base
RUN bundle update
RUN bundle install