fix(test): Move local test to more current fish ...

... by means of using a more current OS, and
fix a test helper that used a feature now removed from fish.
This commit is contained in:
Raphael Reitzig 2023-06-26 09:00:24 +02:00
parent a211fbc9d0
commit 7c0ece3dfb
3 changed files with 9 additions and 7 deletions

View file

@ -1,15 +1,17 @@
FROM ruby:2.7-slim-buster
FROM ubuntu
# Install dependencies
RUN apt-get update \
&& apt-get -y install \
fish \
build-essential \
curl \
fish \
ruby \
ruby-dev \
unzip \
zip \
ruby-dev \
build-essential \
&& apt-get clean
&& apt-get clean \
&& gem install bundler
WORKDIR app
COPY test/Gemfile ./