diff --git a/Dockerfile b/Dockerfile index 1fb7ea526..ecabfa998 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,7 +13,10 @@ COPY yarn.lock /usr/src/app RUN yarn install --production --frozen-lockfile -COPY . /usr/src/app +COPY ./public ./public +COPY ./src ./src +COPY ./tsconfig.json ./tsconfig.json +# COPY . /usr/src/app/ RUN yarn build diff --git a/tsconfig.json b/tsconfig.json index f3a4ec108..339c31ed6 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -16,7 +16,8 @@ "baseUrl": ".", "paths": { "@/*": ["./src/*"], - "~/*": ["./public/*"] + "~/*": ["./public/*"], + "@/components/*": ["./src/components/*"] }, "incremental": true, "plugins": [