13 lines
152 B
Text
13 lines
152 B
Text
|
FROM ruby:2.7-alpine
|
||
|
|
||
|
RUN bundle config --global frozen 1
|
||
|
|
||
|
WORKDIR /app
|
||
|
|
||
|
COPY Gemfile Gemfile.lock ./
|
||
|
RUN bundle install
|
||
|
|
||
|
COPY . .
|
||
|
|
||
|
CMD ["./chronicle"]
|