Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@ db/
trivy
*bandit*
.pre-commit*
bin/act
Comment thread
coderabbitai[bot] marked this conversation as resolved.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ RUN apk update && apk add --no-cache \
bash \
unzip \
sqlcipher \
libressl-dev \
openssl-dev \
sqlite-dev \
sqlcipher-dev \
build-base \
Expand Down Expand Up @@ -74,7 +74,7 @@ RUN chmod +x /app/entrypoint.sh /app/cleanup.sh /app/run.sh
RUN pip install --upgrade pip --no-cache-dir && \
pip install --no-input --no-cache-dir -r requirements.txt

RUN apk del curl unzip binutils npm coreutils build-base libffi-dev cargo python3-dev --no-cache && \
RUN apk del curl unzip binutils npm coreutils build-base libffi-dev cargo python3-dev openssl-dev --no-cache && \
rm -rf /var/lib/apk/*

ENV PYTHONPATH=/app
Expand Down
Loading