15 lines
258 B
Text
15 lines
258 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 flask psycopg2-binary requests
|
|
|
|
WORKDIR /dislocker
|
|
CMD python -u ./dislocker_auth.py
|