Skip to content
Open
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
2 changes: 1 addition & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
version: 2
updates:
- package-ecosystem: "pip"
- package-ecosystem: "uv"
directory: "/"
schedule:
interval: "daily"
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
FROM python:3.11-alpine as builder
FROM python:3.14-alpine as builder

RUN apk update && apk add --no-cache tzdata alpine-sdk ca-certificates
ADD requirements.txt /tmp/
RUN pip3 install --user -r /tmp/requirements.txt && rm /tmp/requirements.txt


FROM python:3.11-alpine
FROM python:3.14-alpine
WORKDIR /SearchGram/searchgram

COPY --from=builder /root/.local /usr/local
Expand Down
17 changes: 17 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
[project]
name = "searchgram"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.14"
dependencies = [
"coloredlogs==15.0.1",
"fakeredis==2.21.0",
"meilisearch==0.40.0",
"pymongo==4.6.1",
"pyrogram==2.0.106",
"tgcrypto==1.2.5",
"tqdm==4.66.1",
"zhconv==1.4.3",
"zincsearch-sdk==0.3.3",
]
9 changes: 0 additions & 9 deletions requirements.txt

This file was deleted.

Loading
Loading