mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-24 23:59:40 +02:00
* Bump to Ruby 3.3.1 * Update Dockerfile versions * Omit system tests in CI * Use `:test` adapter in test * Remove redundant config
20 lines
386 B
Docker
20 lines
386 B
Docker
ARG RUBY_VERSION=3.3.1
|
|
FROM ruby:${RUBY_VERSION}-slim-bullseye
|
|
|
|
RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
|
|
&& apt-get -y install --no-install-recommends \
|
|
apt-utils \
|
|
build-essential \
|
|
curl \
|
|
git \
|
|
imagemagick \
|
|
iproute2 \
|
|
libpq-dev \
|
|
openssh-client \
|
|
postgresql-client \
|
|
vim
|
|
|
|
RUN gem install bundler
|
|
RUN gem install foreman
|
|
|
|
WORKDIR /workspace
|