From 5aa87fa6ecf048dc80134695c57717368c34f1f7 Mon Sep 17 00:00:00 2001 From: Eric Oswald Date: Sun, 5 Apr 2020 20:01:26 -0400 Subject: [PATCH] Fix recurxive COPY of repo in Dockerfile. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 402d1d8..84d39df 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,7 @@ RUN apt-get -y install zip \ unzip # copy file to /app/AdminAFK-registration/ -COPY * /app/AdminAFK-registration/ +COPY . /app/AdminAFK-registration/ # install composer RUN curl -sS https://getcomposer.org/installer | php && mv composer.phar /usr/local/bin/composer