File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- /.git /
1+ # /.git/
22/.next /
33* /out /
44/.open-next /
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ RUN mkdir app && npx tsx ./scripts/removeHinting.ts
1919FROM node:lts-slim AS builder
2020
2121# ビルド中にsentryでソースマップをアップロードするのに必要
22- RUN apt-get update && apt-get install -y ca-certificates
22+ RUN apt-get update && apt-get install -y ca-certificates git
2323
2424# Set working directory
2525WORKDIR /app
@@ -30,6 +30,9 @@ COPY --from=dependencies /app/node_modules ./node_modules
3030# Copy application source code
3131COPY . .
3232
33+ # .gitディレクトリがないとsentryのソースマップ送信ができないのでそれの確認
34+ RUN ls .git/
35+
3336COPY --from=dependencies /app/app/m-plus-rounded-1c-nohint ./app/m-plus-rounded-1c-nohint
3437
3538# Stop if documentation has any change that is not reflected to revisions.yml and database.
You can’t perform that action at this time.
0 commit comments