Merge pull request #19 from waku-org/weboko/docker-fix

chore: add dockerignore
This commit is contained in:
Sasha 2023-12-03 00:52:24 +01:00 committed by GitHub
commit 627de7bf51
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

2
.dockerignore Normal file
View File

@ -0,0 +1,2 @@
node_modules
.next

View File

@ -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