mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-08-02 20:15:22 +02:00
Add basic devcontainer
This commit is contained in:
parent
eb762c31c6
commit
5f50ea3f02
4 changed files with 81 additions and 0 deletions
19
.devcontainer/Dockerfile
Normal file
19
.devcontainer/Dockerfile
Normal file
|
@ -0,0 +1,19 @@
|
|||
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
|
Loading…
Add table
Add a link
Reference in a new issue