18 lines
325 B
Docker
18 lines
325 B
Docker
|
FROM debian:bullseye-slim
|
||
|
|
||
|
RUN apt update && apt-get install -y \
|
||
|
python3-minimal \
|
||
|
python3-pip \
|
||
|
python3-dev \
|
||
|
python-is-python3
|
||
|
|
||
|
WORKDIR /home
|
||
|
|
||
|
RUN python3 -m pip install --upgrade pip
|
||
|
|
||
|
COPY IdHub .
|
||
|
RUN pip install -r requirements.txt
|
||
|
|
||
|
COPY docker/idhub.entrypoint.sh .
|
||
|
ENTRYPOINT sh ./idhub.entrypoint.sh
|