[Docker] Fix build

The nice to have packages I removed weren't actually  just nice to have.
Shoreman requires a bash installation
This commit is contained in:
Earlopain 2022-04-22 18:25:01 +02:00
parent 24bceb2c67
commit dac62bbc78
No known key found for this signature in database
GPG Key ID: 6CFB948E15246897

View File

@ -2,7 +2,7 @@ FROM ruby:2.7.3-alpine
# Dependencies for setup and runtime
RUN apk --no-cache add nodejs yarn postgresql-client ffmpeg vips tzdata \
git build-base postgresql-dev glib-dev
git build-base postgresql-dev glib-dev bash
RUN wget -O - https://github.com/jemalloc/jemalloc/releases/download/5.2.1/jemalloc-5.2.1.tar.bz2 | tar -xj && \
cd jemalloc-5.2.1 && \