You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

17 lines
512 B

FROM drupal:latest
# install vi & sendmail
RUN apt update && apt install -y vim sendmail
#WORKDIR /var/www/html
# https://www.drupal.org/node/3060/release
#ENV DRUPAL_VERSION 9.4.7
#ENV DRUPAL_MD5 98e1f62c11a5dc5f9481935eefc814c5
#RUN curl -fSL "http://ftp.drupal.org/files/projects/drupal-${DRUPAL_VERSION}.tar.gz" -o drupal.tar.gz \
# && echo "${DRUPAL_MD5} *drupal.tar.gz" | md5sum -c - \
# && tar -xz --strip-components=1 -f drupal.tar.gz \
# && rm drupal.tar.gz \
# && chown -R www-data:www-data sites