Files
sure/.devcontainer/Dockerfile
Juan José Mata 805f8207a9 Change base image from bullseye to bookworm
No more `slim-bullseye` images?

Signed-off-by: Juan José Mata <juanjo.mata@gmail.com>
2025-11-10 15:53:01 +01:00

31 lines
669 B
Docker

ARG RUBY_VERSION=3.4.7
FROM ruby:${RUBY_VERSION}-slim-bookworm
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update -qq \
&& apt-get -y install --no-install-recommends \
apt-utils \
build-essential \
curl \
git \
imagemagick \
iproute2 \
libpq-dev \
libyaml-dev \
libyaml-0-2 \
openssh-client \
postgresql-client \
vim \
procps \
&& rm -rf /var/lib/apt/lists /var/cache/apt/archives
RUN gem install bundler foreman
# Install Node.js 20
RUN curl -fsSL https://deb.nodesource.com/setup_20.x | bash - \
&& apt-get install -y nodejs \
&& rm -rf /var/lib/apt/lists /var/cache/apt/archives
WORKDIR /workspace