Skip to content

Commit

Permalink
feat(cache): optimise for frontend changes
Browse files Browse the repository at this point in the history
  • Loading branch information
proffapt committed Jun 30, 2024
1 parent 39a15fb commit c32b2c7
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Dockerfile-build
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,6 @@ ADD ./mkdocs.yml .
ADD ./docs ./docs
RUN make docs-build

# web
ADD ./web/package.json ./web/package-lock.json ./web/
RUN make web-deps
ADD ./web ./web
RUN make web-build

# cli & server
ADD go.mod go.sum main.go ./
ADD ./client ./client
Expand All @@ -42,6 +36,12 @@ ADD ./user ./user
ADD ./util ./util
RUN make VERSION=$VERSION COMMIT=$COMMIT cli-linux-server

# web
ADD ./web/package.json ./web/package-lock.json ./web/
RUN make web-deps
ADD ./web ./web
RUN make web-build

FROM alpine

LABEL org.opencontainers.image.authors="philipp.heckel@gmail.com"
Expand Down

0 comments on commit c32b2c7

Please sign in to comment.