1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-18 20:59:39 +02:00
Maybe/.devcontainer/Dockerfile

27 lines
533 B
Text
Raw Normal View History

2025-05-20 09:09:10 -04:00
ARG RUBY_VERSION=3.4.4
FROM ruby:${RUBY_VERSION}-slim-bullseye
2024-02-02 16:03:46 +00:00
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 \
libyaml-dev \
libyaml-0-2 \
2024-02-02 16:03:46 +00:00
openssh-client \
postgresql-client \
vim
RUN gem install bundler
RUN gem install foreman
# Install Node.js 20
RUN curl -fsSL https://deb.nodesource.com/setup_20.x | bash - \
&& apt-get install -y nodejs
2024-02-02 16:03:46 +00:00
WORKDIR /workspace