Skip to content

Commit aa1c244

Browse files
authored
Dev (#27)
2 parents d31a88a + 42f3f1c commit aa1c244

3 files changed

Lines changed: 25 additions & 1 deletion

File tree

.dockerignore

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
__pycache__/
2+
*.pyc
3+
*.pyo
4+
*.pyd
5+
.Python
6+
env/
7+
.venv/
8+
build/
9+
dist/
10+
.eggs/
11+
*.egg-info/
12+
.git/
13+
tests/

Dockerfile

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
FROM python:3.10-slim
2+
3+
WORKDIR /app
4+
5+
COPY . /app
6+
7+
RUN pip install --upgrade pip \
8+
&& pip install . \
9+
&& apt-get clean
10+
11+
ENTRYPOINT ["searchcode"]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<p align="center"><img src="https://github.com/user-attachments/assets/bce54aa5-7f20-435d-a419-72e8e779105a" width=300 height=60><br>Python SDK and CLI utility for <a href="https://searchcode.com">Searchcode</a>.<br><i>Search 75 billion lines of code from 40 million projects</i></p>
1+
<p align="center"><img src="https://github.com/user-attachments/assets/bce54aa5-7f20-435d-a419-72e8e779105a" width=300 height=60><br>Python SDK and CLI utility for <a href="https://searchcode.com">Searchcode</a>.<br><i>Simple, comprehensive code search.</i></p>
22
<p align="center"></p>
33

44
---

0 commit comments

Comments
 (0)