Dockerfile 97 B

12345678910
  1. FROM python:3.10
  2. WORKDIR /app
  3. COPY . .
  4. RUN ./init_installation.sh
  5. ENTRYPOINT ./entrypoint.sh