Project

General

Profile

task #13 ยป Dockerfile

lupa18, 2019-07-05 23:23

 
FROM redmine:4

ENV REDMINE /usr/src/redmine

# Dependencia curl para descargar el logo
RUN apt-get update \
&& apt-get install -y curl

COPY docker-entrypoint.sh /

# Instalo Plugins
WORKDIR $REDMINE/plugins

# Instalo issue_recurring
#RUN git clone https://github.com/cryptogopher/issue_recurring.git
#WORKDIR $REDMINE/plugins/issue_recurring
#RUN git checkout tags/1.2

WORKDIR $REDMINE
    (1-1/1)