Skip to content

Commit

Permalink
using Ruby 3 in local dev and test containers
Browse files Browse the repository at this point in the history
  • Loading branch information
jonasjabari committed Feb 15, 2022
1 parent 57e5761 commit 6937bd9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Dockerfile.dev
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM ruby:2.7.2-alpine3.12
FROM ruby:3.0-alpine3.12

RUN gem install bundler:2.1.4

RUN apk update --no-cache && \
apk add build-base postgresql-dev git nodejs yarn tzdata bash sqlite-dev npm && \
apk add build-base postgresql-dev git nodejs yarn tzdata bash sqlite-dev npm libtool && \
mkdir -p /app

WORKDIR /app
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile.test
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM ruby:2.7.2-alpine3.12
FROM ruby:3.0-alpine3.12

RUN gem install bundler:2.1.4

RUN apk update --no-cache && \
apk add build-base postgresql-dev git nodejs yarn tzdata bash sqlite-dev npm && \
apk add build-base postgresql-dev git nodejs yarn tzdata bash sqlite-dev npm libtool && \
mkdir -p /app

WORKDIR /app
Expand Down

0 comments on commit 6937bd9

Please sign in to comment.