Project

General

Profile

task #13 ยป Dockerfile

lupa18, 2019-07-05 23:23

 
1
FROM redmine:4
2

    
3
ENV REDMINE /usr/src/redmine
4

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

    
9
COPY docker-entrypoint.sh /
10

    
11
# Instalo Plugins
12
WORKDIR $REDMINE/plugins
13

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

    
19
WORKDIR $REDMINE
    (1-1/1)