24 lines
437 B
Docker
24 lines
437 B
Docker
FROM python:3.11-slim
|
|
|
|
ENV PUID=1000
|
|
ENV PGID=1000
|
|
|
|
RUN apt-get update && \
|
|
apt-get install tini gosu dos2unix --yes --no-install-recommends && \
|
|
apt-get clean && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
WORKDIR /app
|
|
|
|
COPY ./requirements.txt ./
|
|
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
COPY . .
|
|
|
|
RUN chmod +x *.sh && \
|
|
dos2unix *.sh
|
|
|
|
ENTRYPOINT ["/bin/tini", "--", "/app/entrypoint.sh"]
|
|
CMD ["python", "-u", "main.py"]
|