Skip to content
Merged
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
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
WORKDIR /usr/src/app

# copy node binary from official node image
COPY --from=node:22.22-slim@sha256:689c11043dad91472750cd824c97dd5e2318e9dd6f954e492fe7af0135d33ceb /usr/local/bin/node /usr/local/bin/node
COPY --from=node:22.22-slim@sha256:7af03b14a13c8cdd38e45058fd957bf00a72bbe17feac43b1c15a689c029c732 /usr/local/bin/node /usr/local/bin/node

# install dependencies into temp directory
# this will cache them and speed up future builds
Expand All @@ -20,7 +20,7 @@
COPY --from=install /temp/prod/ .

# copy source code with bun ownership so generated artifacts are writable at runtime
COPY --chown=bun:bun . .

Check warning on line 23 in Dockerfile

View workflow job for this annotation

GitHub Actions / docker

Attempting to Copy file that is excluded by .dockerignore

CopyIgnoredFile: Attempting to Copy file "." that is excluded by .dockerignore More info: https://docs.docker.com/go/dockerfile/rule/copy-ignored-file/
RUN bunx prisma generate

# create the SQLite data directory (mounted as a volume in docker-compose)
Expand Down
Loading