diff --git a/Dockerfile b/Dockerfile
index 94c23374335c9d84ff1cf776729f90477dd5ba2c..c9a710081d11810331c909d9190596ac6402ae2b 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -6,6 +6,7 @@ RUN apt-get update && apt-get install -y \
         libpng-dev \
         git \
         curl \
+        unzip \
     && docker-php-ext-configure gd --with-freetype --with-jpeg \
     && docker-php-ext-install -j$(nproc) gd
 
@@ -23,6 +24,7 @@ RUN rm -f /usr/local/etc/php/conf.d/xdebug.ini
 WORKDIR /var/www/html
 RUN git clone https://gitlab.in2p3.fr/cc-in2p3-dev/TMS tms
 WORKDIR /var/www/html/tms/tms
+RUN echo "${env_deploy}" > .env
 
 RUN curl -sS https://getcomposer.org/installer | php
 RUN php composer.phar install