This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
2023-10-31 10:00:08 +00:00
|
|
|
FROM debian:bullseye-slim
|
|
|
|
|
|
|
|
RUN apt update && apt-get install -y \
|
|
|
|
python3-minimal \
|
|
|
|
python3-pip \
|
|
|
|
python3-dev \
|
2023-12-12 10:09:39 +00:00
|
|
|
python-is-python3 \
|
|
|
|
git \
|
|
|
|
sqlite3 \
|
|
|
|
jq
|
2023-10-31 10:00:08 +00:00
|
|
|
|
2023-12-01 09:10:11 +00:00
|
|
|
WORKDIR /opt/idhub
|
2023-10-31 10:00:08 +00:00
|
|
|
|
|
|
|
RUN python3 -m pip install --upgrade pip
|
|
|
|
|
2023-12-01 09:10:11 +00:00
|
|
|
COPY IdHub/requirements.txt /
|
|
|
|
RUN pip install -r /requirements.txt
|
2023-10-31 10:00:08 +00:00
|
|
|
|
2023-12-01 09:10:11 +00:00
|
|
|
COPY docker/idhub.entrypoint.sh /
|
|
|
|
ENTRYPOINT sh /idhub.entrypoint.sh
|