Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
.cache
.claude
.omc
.playwright-mcp
.storybook
.venv
.vscode
.wolf
playwright-report
*.db
*.conf
*.Dockerfile
*.gz
Expand All @@ -17,3 +24,4 @@ release
!entrypoint.sh
!evcc.dist.yaml
!package*.json
!tsconfig.json
7 changes: 5 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,15 @@ RUN --mount=type=cache,target=/root/.npm npm ci
COPY Makefile .
COPY *.js ./
COPY *.ts *.mts ./
COPY tsconfig.json .
COPY .browserslistrc .
COPY assets assets
COPY i18n i18n
# openapi generator inputs, output folder is created below
COPY scripts scripts
COPY server/*.yaml server/

RUN make ui
RUN mkdir -p server/mcp && make ui


# STEP 2 build executable binary
Expand Down Expand Up @@ -45,7 +49,6 @@ RUN --mount=type=cache,target=${GOMODCACHE} go mod download
# install tools
COPY Makefile .
COPY cmd/implement/ cmd/implement/
COPY cmd/openapi/ cmd/openapi/
COPY api/ api/
RUN --mount=type=cache,target=${GOMODCACHE} make install

Expand Down
Loading