mirror of
https://github.com/CodeforLeipzig/stadtratmonitor.git
synced 2025-04-03 17:26:43 +02:00
fix FROM
This commit is contained in:
parent
ccb7ad1539
commit
f72f7b4ad6
4 changed files with 4 additions and 4 deletions
|
@ -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 \
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
# ~~~ DEPLOY IMAGE ~~~
|
||||
# ~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
FROM base AS deploy
|
||||
FROM code.cozy.town/codeforleipzig/stadtratmonitor:latest-base
|
||||
|
||||
WORKDIR /home/srm/app/
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
# ~~~ TEST IMAGE ~~~
|
||||
# ~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
FROM base AS testing
|
||||
FROM code.cozy.town/codeforleipzig/stadtratmonitor:latest-base
|
||||
|
||||
RUN bundle update
|
||||
RUN bundle install
|
||||
|
|
Loading…
Add table
Reference in a new issue