mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-23 07:09:39 +02:00
19 lines
353 B
Docker
19 lines
353 B
Docker
FROM ruby:3.3.0-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
|