diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..b90a368 --- /dev/null +++ b/.dockerignore @@ -0,0 +1,2 @@ +node_modules +.next diff --git a/Dockerfile b/Dockerfile index 2ef8abc..d8448df 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ FROM httpd:2.4 RUN mkdir -p /usr/local/apache2/htdocs/_next -COPY ./out/* /usr/local/apache2/htdocs/ -COPY ./out/_next /usr/local/apache2/htdocs/_next +COPY out/* /usr/local/apache2/htdocs/ +COPY out/_next /usr/local/apache2/htdocs/_next