15 lines
329 B
Text
15 lines
329 B
Text
FROM python:3.12-alpine
|
|
USER root
|
|
|
|
RUN mkdir /dislocker
|
|
|
|
RUN apk --no-cache add tzdata
|
|
RUN cp /usr/share/zoneinfo/Asia/Tokyo /etc/localtime
|
|
|
|
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
|