blob: 2e48e60b2dd306e8f49c2f9cbfc2c35a47c8aec7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
FROM python:3.11-slim
LABEL org.opencontainers.image.source = "https://github.com/PacketParker/LinkLogger"
MAINTAINER "parker <mailto:contact@pkrm.dev>"
WORKDIR /
COPY . .
RUN pip install -r requirements.txt
ENTRYPOINT [ "python" ]
CMD [ "-u", "linklogger.py" ]
|