Skip to content

Commit

Permalink
fix: INF-186: Add missing dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
ralf_weber committed Jan 22, 2025
1 parent 6b375cc commit ae877f6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/push-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ jobs:
contents: read
packages: write
steps:
- name: Setup sqlite3
run: sudo apt update && sudo apt-get install libsqlite3-dev
- name: Setup rust
uses: actions-rs/toolchain@v1.0.6
with:
Expand Down
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
FROM debian:bookworm-slim

RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates sqlite3
RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates
RUN update-ca-certificates

COPY graph.db3 .
COPY templates/ templates/
COPY target/release/server .

USER 1000

CMD ["./server"]

0 comments on commit ae877f6

Please sign in to comment.