8 lines
181 B
Docker
8 lines
181 B
Docker
FROM python:3.12
|
|
ENV PYTHONUNBUFFERED=1
|
|
WORKDIR /code/
|
|
COPY requirements.txt .
|
|
RUN pip install --no-cache-dir --requirement requirements.txt
|
|
COPY . .
|
|
ENTRYPOINT ["./entrypoint.sh"]
|