mirror of
https://github.com/we-promise/sure.git
synced 2026-04-17 02:54:10 +00:00
* Update Dockerfile - procps install procps for worker container healthcheck - pgrep Signed-off-by: J4ker <56275036+J4ker@users.noreply.github.com> * Good idea, adding it to dev container --------- Signed-off-by: J4ker <56275036+J4ker@users.noreply.github.com> Co-authored-by: Juan José Mata <juanjo.mata@gmail.com>
31 lines
669 B
Docker
31 lines
669 B
Docker
ARG RUBY_VERSION=3.4.4
|
|
FROM ruby:${RUBY_VERSION}-slim-bullseye
|
|
|
|
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
|