This repository has been archived on 2026-05-05. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
django_action/Dockerfile

6 lines
377 B
Docker

FROM python:3.10-slim-bullseye
RUN apt-get update -y && apt-get install -y --no-install-recommends bash git openssh graphviz graphviz-dev musl-dev postgresql-dev build-base build-essential gcc python3-dev libffi-dev poppler-utils zlib1g-dev libjpeg-dev libssl-dev && apt-get clean && rm -rf /var/lib/apt/lists/*
COPY entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]