Skip to content

Commit

Permalink
fix: Include resources in docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
Threated committed Mar 13, 2024
1 parent 3aec110 commit ceebff3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
resources/test
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,5 @@ RUN cargo build --release --bin prism

FROM gcr.io/distroless/cc-debian12 AS runtime
COPY --from=builder /app/target/release/prism /usr/local/bin/
ENTRYPOINT ["/usr/local/bin/prism"]
COPY ./resources ./resources
ENTRYPOINT ["/usr/local/bin/prism"]

0 comments on commit ceebff3

Please sign in to comment.