mirror of
https://github.com/Smart123s/ItchClaim.git
synced 2025-07-26 15:37:28 +02:00
16 lines
190 B
Docker
16 lines
190 B
Docker
FROM python:3.8
|
|
|
|
ENV ITCHCLAIM_DOCKER TRUE
|
|
|
|
WORKDIR /app
|
|
|
|
COPY requirements.txt .
|
|
|
|
RUN pip install -r requirements.txt
|
|
|
|
COPY . .
|
|
|
|
VOLUME [ "/data" ]
|
|
|
|
ENTRYPOINT [ "python", "itchclaim.py" ]
|