From e567eb6dcf005090740cd40067b6f52258a392a3 Mon Sep 17 00:00:00 2001 From: Parker Date: Sun, 3 Nov 2024 22:21:23 -0600 Subject: [PATCH] Update requirements.txt / Docker stuff --- Dockerfile | 5 ++--- docker-compose.yaml | 3 --- requirements.txt | 6 ++---- 3 files changed, 4 insertions(+), 10 deletions(-) diff --git a/Dockerfile b/Dockerfile index 2e48e60..418ba9d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,7 @@ FROM python:3.11-slim -LABEL org.opencontainers.image.source = "https://github.com/PacketParker/LinkLogger" - -MAINTAINER "parker " +LABEL org.opencontainers.image.source="https://github.com/PacketParker/LinkLogger" +LABEL maintainer="parker " WORKDIR / diff --git a/docker-compose.yaml b/docker-compose.yaml index b6599b5..0f9f033 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -3,9 +3,6 @@ services: container_name: linklogger image: ghcr.io/packetparker/linklogger:latest network_mode: host - environment: - - IP_TO_LOCATION=True - - API_KEY=your_api_key volumes: - /path/on/system:/data restart: on-failure \ No newline at end of file diff --git a/requirements.txt b/requirements.txt index d1864fc..2ef36d3 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,12 +2,10 @@ pydantic==2.6.2 ip2location-io==1.0.0 SQLAlchemy==2.0.27 ua-parser==0.18.0 -validators==0.22.0 -uvicorn==0.27.1 fastapi==0.110.0 -APScheduler==3.10.4 Flask==3.0.3 Flask-Login==0.6.3 a2wsgi==1.10.4 colorlog==6.8.2 -bcrypt==4.1.3 \ No newline at end of file +bcrypt==4.1.3 +jsonschema==4.23.0 \ No newline at end of file