diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..8242525 --- /dev/null +++ b/.dockerignore @@ -0,0 +1,5 @@ +node_modules +dist +frontend +.env +schema.graphql \ No newline at end of file diff --git a/Dockerfile b/Dockerfile index 54b156c..560595d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,8 +8,8 @@ RUN yarn install --frozen-lockfile COPY tsconfig.json . COPY tsconfig.build.json . -COPY migration . -COPY src . +COPY migration migration +COPY src src RUN yarn build