Skip to content

Commit 4a2d9c7

Browse files
committed
Merge branch 'main' of github.com:msoedov/agentic_security
2 parents bc030f0 + fc21339 commit 4a2d9c7

File tree

3 files changed

+21
-1
lines changed

3 files changed

+21
-1
lines changed

.dockerignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
.git/
2+
__pycache__/

Dockerfile

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
FROM python:3.11-slim
2+
3+
WORKDIR /app
4+
5+
RUN apt-get update && apt-get install -y curl && rm -rf /var/lib/apt/lists/*
6+
7+
RUN curl -sSL https://install.python-poetry.org | python3 -
8+
9+
# Ensure Poetry is available in PATH
10+
ENV PATH="/root/.local/bin:$PATH"
11+
12+
COPY pyproject.toml poetry.lock ./
13+
14+
RUN poetry self add "poetry-plugin-export" && \
15+
poetry export -f requirements.txt --without-hashes -o requirements.txt && \
16+
pip install --no-cache-dir -r requirements.txt
17+
18+
COPY . .

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ httpx
77
cache_to_disk
88
# datasets
99
loguru
10-
pandas
10+
pandas

0 commit comments

Comments
 (0)