22 lines
462 B
Text
22 lines
462 B
Text
FROM python:3
|
|
USER root
|
|
|
|
RUN mkdir /dislocker
|
|
|
|
RUN apt-get update
|
|
RUN apt-get -y install locales && \
|
|
localedef -f UTF-8 -i ja_JP ja_JP.UTF-8
|
|
ENV LANG ja_JP.UTF-8
|
|
ENV LANGUAGE ja_JP:ja
|
|
ENV LC_ALL ja_JP.UTF-8
|
|
ENV TZ JST-9
|
|
ENV TERM xterm
|
|
|
|
RUN apt-get install -y nano less
|
|
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
|