2024-05-16 00:57:44 +09:00
|
|
|
FROM docker.io/python:3.11-bookworm
|
|
|
|
|
|
|
|
RUN apt-get update && apt-get install -y libgl1 && rm -rf /var/lib/apt/lists/*
|
|
|
|
|
|
|
|
RUN mkdir -p /opt/minya
|
|
|
|
WORKDIR /opt/minya
|
|
|
|
|
2024-05-17 01:15:39 +09:00
|
|
|
ADD requirements.txt /opt/minya
|
2024-05-16 00:57:44 +09:00
|
|
|
|
|
|
|
RUN python3 -m pip install -r requirements.txt
|
|
|
|
|
2024-05-17 01:15:39 +09:00
|
|
|
ADD . /opt/minya
|
|
|
|
|
2024-05-16 00:57:44 +09:00
|
|
|
CMD ["python3", "minya.py"]
|