Upgrade docker image to ruby 2.6 and debian buster

closes #8180
This commit is contained in:
Benjamin Neff 2020-11-03 03:00:03 +01:00
parent f51ad14c1b
commit d9013250fd
No known key found for this signature in database
GPG key ID: 971464C3F1A90194

View file

@ -1,4 +1,4 @@
FROM ruby:2.4.4-slim-stretch
FROM ruby:2.6-slim-buster
RUN DEBIAN_FRONTEND=noninteractive \
apt-get update && \
@ -27,7 +27,8 @@ ARG DIA_UID
ARG DIA_GID
ENV HOME="/home/diaspora" \
GEM_HOME="/diaspora/vendor/bundle"
GEM_HOME="/diaspora/vendor/bundle" \
OPENSSL_CONF="/etc/ssl/"
RUN addgroup --gid $DIA_GID diaspora && \
adduser \