diff --git a/.dockerignore b/.dockerignore index d7aae99..a397a0f 100644 --- a/.dockerignore +++ b/.dockerignore @@ -4,4 +4,5 @@ yarn-error.log build public content +config .git diff --git a/Dockerfile b/Dockerfile index 87aa964..b6081f8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,6 +3,7 @@ WORKDIR /app COPY . ./ RUN yarn RUN yarn build -VOLUME /app +VOLUME /app/config +VOLUME /app/content EXPOSE 3000 CMD [ "yarn", "start" ]