14 lines
227 B
Docker
14 lines
227 B
Docker
FROM python:3.12-alpine
|
|
|
|
WORKDIR /app
|
|
|
|
# Install dependencies
|
|
COPY requirements.txt .
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
# Copy source code
|
|
COPY . .
|
|
|
|
# Run the gatherer
|
|
CMD ["python", "openvpn_gatherer_v3.py"]
|