Skip to content

Commit

Permalink
ci: fix container build
Browse files Browse the repository at this point in the history
Follow-up to #14,
in which I overlooked the tarball reference in the containerfile.
The container build was failing, which meant the auto-deploys weren't
working, which is how I noticed.
  • Loading branch information
conorsch committed Dec 3, 2024
1 parent 8865e4c commit 5dd7dd4
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
3 changes: 0 additions & 3 deletions .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,3 @@
!backend/
!app/
!public/

# allow a specific source tarball, introduced in GH#13.
!penumbra-zone-ui-tailwind-0.1.0.tgz
2 changes: 1 addition & 1 deletion Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ RUN apk add --no-cache libc6-compat
WORKDIR /app

# Install dependencies
COPY package.json pnpm-lock.yaml* penumbra-zone-ui-tailwind-0.1.0.tgz ./
COPY package.json pnpm-lock.yaml* .
RUN pnpm install --frozen-lockfile

# Rebuild the source code only when needed
Expand Down

0 comments on commit 5dd7dd4

Please sign in to comment.