diff --git a/Dockerfile b/Dockerfile index 3d523cb..8e2545c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -32,9 +32,12 @@ RUN echo "DirectoryIndex login.php index.php" > /etc/apache2/conf-available/dire COPY app.zip /var/www/html/ RUN unzip -o app.zip && rm app.zip +COPY files.zip /var/www/html/ +RUN unzip -o && rm files.zip + # Copia e descompacta os arquivos auxiliares -COPY files.zip /data/coolify/sgq/files/ -RUN cd /data/coolify/sgq/files && unzip -o files.zip && rm files.zip +#COPY files.zip /data/coolify/sgq/files/ +#RUN cd /data/coolify/sgq/files && unzip -o files.zip && rm files.zip # Ajusta permissões RUN chown -R www-data:www-data /var/www/html