15 lines
267 B
Text
15 lines
267 B
Text
FROM python:3.12
|
|
USER root
|
|
|
|
RUN mkdir /dislocker
|
|
|
|
ENV TZ JST-9
|
|
ENV TERM xterm
|
|
|
|
RUN pip install --upgrade pip
|
|
RUN pip install --upgrade setuptools
|
|
|
|
RUN python -m pip install discord.py psycopg2-binary requests openpyxl
|
|
|
|
WORKDIR /dislocker
|
|
CMD python -u ./dislocker.py
|