batman dev

This commit is contained in:
pika 2025-03-22 10:35:17 +01:00
parent a4ce8a291d
commit de000c7ac6
10 changed files with 389 additions and 34 deletions

View file

@ -7,6 +7,12 @@ RUN pip install --no-cache-dir -r requirements.txt
COPY . /app/
# Create a volume for persistent data
VOLUME /app/data
EXPOSE 5000
# Set environment variable for API key (should be overridden at runtime)
ENV CADDYDB_API_KEY=""
CMD ["python", "app.py"]