]> git.p6c8.net - jirafeau.git/commitdiff
[TASK] simplify Dockerfile
authorJerome Jutteau <jerome@jutteau.fr>
Tue, 5 Jul 2022 07:59:08 +0000 (09:59 +0200)
committerJerome Jutteau <jerome@jutteau.fr>
Tue, 5 Jul 2022 11:10:03 +0000 (13:10 +0200)
Signed-off-by: Jerome Jutteau <jerome@jutteau.fr>
.dockerignore [new file with mode: 0644]
.gitignore
Dockerfile

diff --git a/.dockerignore b/.dockerignore
new file mode 100644 (file)
index 0000000..3791a81
--- /dev/null
@@ -0,0 +1,6 @@
+CHANGELOG.md
+CONTRIBUTING.md
+Dockerfile
+README.md
+composer.json
+.*
\ No newline at end of file
index f2a258ca74fdf455978e31e11f1fe1291f90272b..c911a76c9cc6388f3b930ad481fa65f4fe1cd7cd 100644 (file)
@@ -10,4 +10,5 @@ composer.phar
 # Ignore file starting with dot, but keep others
 .*
 !.gitlab-ci.yml
-!.gitignore
\ No newline at end of file
+!.gitignore
+!.dockerignore
\ No newline at end of file
index e0b81bf10bef2abf9442119db25c8d704cd38017..776fec0fc4696d73b167423242c8be1a9df23464 100644 (file)
@@ -7,16 +7,17 @@ RUN apk update && \
     echo "UTC" > /etc/timezone
 
 # install lighttpd
-RUN apk add lighttpd git
+RUN apk add lighttpd
 
 # install jirafeau
 RUN mkdir /www
 WORKDIR /www
-COPY .git .git
-RUN git reset --hard && rm -rf docker install.php .git .gitignore .gitlab-ci.yml CONTRIBUTING.md Dockerfile README.md
-RUN touch /www/lib/config.local.php
-RUN chown -R $(id -u lighttpd).$(id -g www-data) /www
-RUN chmod o=,ug=rwX -R /www
+# Will ignore some files through .dockerignore
+COPY . .
+RUN rm -rf docker && \
+    touch /www/lib/config.local.php && \
+    chown -R $(id -u lighttpd).$(id -g www-data) /www && \
+    chmod o=,ug=rwX -R /www
 
 COPY docker/cleanup.sh /cleanup.sh
 COPY docker/run.sh /run.sh
@@ -28,7 +29,6 @@ COPY docker/php.ini /usr/local/etc/php/php.ini
 COPY docker/lighttpd.conf /etc/lighttpd/lighttpd.conf
 
 # cleanup
-RUN apk del git
 RUN rm -rf /var/cache/apk/*
 
 CMD /run.sh

patrick-canterino.de