Files
osintbuddy/backend/backend.Dockerfile
jerlendds 6904c242af Rework init_db load and entities for plugins update
entity.py, node.py, crud_entities.py, init_db.py, entities.py, backend.Dockerfile, and .gitignore
2024-01-19 10:50:32 -07:00

17 lines
555 B
Docker
Executable File

FROM python:3.11.7-slim-bullseye
LABEL maintainer="jerlendds <support@forum.osintbuddy.com>"
WORKDIR /app/
ENV PYTHONPATH=/app/
RUN apt-get -y update && apt-get -y install apt-transport-https chromium chromium-driver git wget gnupg curl && \
apt-get clean && pip3 install --no-cache-dir --upgrade pip;
COPY requirements.txt /app/requirements.txt
RUN pip3 install --no-cache-dir -r /app/requirements.txt
COPY app/ /app/
COPY osintbuddy-plugins /app/osintbuddy-plugins/
RUN pip install /app/osintbuddy-plugins/
CMD ["/bin/bash", "-c", "./start.sh"]