15 lines
227 B
Docker
15 lines
227 B
Docker
|
FROM python:3.10-slim
|
||
|
WORKDIR /app
|
||
|
|
||
|
COPY requirements.txt .
|
||
|
RUN pip install --no-cache-dir -r requirements.txt
|
||
|
|
||
|
COPY . .
|
||
|
|
||
|
RUN mkdir -p /app/data \
|
||
|
&& chmod +x /app/entrypoint.sh
|
||
|
|
||
|
EXPOSE 8143
|
||
|
|
||
|
ENTRYPOINT ["./entrypoint.sh"]
|