소스 검색

Use taiga 3.1.0

Girish Ramakrishnan 8 년 전
부모
커밋
415574079f
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      Dockerfile

+ 2 - 2
Dockerfile

@@ -14,11 +14,11 @@ RUN apt-get update && apt-get install -y \
 
 ## backend
 RUN mkdir /app/code/taiga-back
-RUN curl -L https://github.com/taigaio/taiga-back/archive/3.0.0.tar.gz | tar -xz -C /app/code/taiga-back --strip-components 1 -f -
+RUN curl -L https://github.com/taigaio/taiga-back/archive/3.1.0.tar.gz | tar -xz -C /app/code/taiga-back --strip-components 1 -f -
 
 ## frontend
 RUN mkdir /app/code/taiga-front-dist
-RUN curl -L https://github.com/taigaio/taiga-front-dist/archive/3.0.0-stable.tar.gz | tar -xz -C /app/code/taiga-front-dist --strip-components 1 -f -
+RUN curl -L https://github.com/taigaio/taiga-front-dist/archive/3.1.0-stable.tar.gz | tar -xz -C /app/code/taiga-front-dist --strip-components 1 -f -
 
 RUN rm -rf /app/code/taiga-back/media && \
     ln -s /app/data/media /app/code/taiga-back/media