mirror of
https://github.com/Smart123s/ItchClaim.git
synced 2025-07-27 15:37:34 +02:00
18 lines
215 B
Docker
18 lines
215 B
Docker
FROM python:3.12
|
|
|
|
ENV ITCHCLAIM_DOCKER TRUE
|
|
|
|
WORKDIR /app
|
|
|
|
COPY requirements.txt .
|
|
|
|
RUN pip install -r requirements.txt
|
|
|
|
ENV PYTHONUNBUFFERED 1
|
|
|
|
COPY . .
|
|
|
|
VOLUME [ "/data" ]
|
|
|
|
ENTRYPOINT [ "python", "itchclaim.py" ]
|