FROM python:3.11-slim LABEL org.opencontainers.image.source = "https://github.com/PacketParker/LinkLogger" MAINTAINER "parker " WORKDIR / COPY . . RUN pip install -r requirements.txt ENTRYPOINT [ "python" ] CMD [ "-u", "linklogger.py" ]