Johannes Zellner 9 ani în urmă
părinte
comite
913d9043c5
1 a modificat fișierele cu 0 adăugiri și 9 ștergeri
  1. 0 9
      Dockerfile

+ 0 - 9
Dockerfile

@@ -21,17 +21,8 @@ RUN sed -e 's/upload_max_filesize = .*/upload_max_filesize = 8M/' \
 RUN ln -sf /app/data/apache2-app.conf /etc/apache2/sites-available/app.conf
 RUN ln -sf /etc/apache2/sites-available/app.conf /etc/apache2/sites-enabled/app.conf
 
-# configure supervisor
-RUN sed -e 's,^logfile=.*$,logfile=/run/app/supervisord.log,' -i /etc/supervisor/supervisord.conf
-ADD supervisor/ /etc/supervisor/conf.d/
-
-ENV PATH /usr/local/node-4.2.1/bin:$PATH
-
-RUN cd /app/code && npm install ftpd superagent
-
 ADD apache2-app.conf /app/code/apache2-app.conf
 ADD index.html /app/code/index.html
 ADD start.sh /app/code/start.sh
-ADD ftp.js /app/code/ftp.js
 
 CMD [ "/app/code/start.sh" ]