full.Dockerfile 348 B

12345678910111213141516171819
  1. ARG UBUNTU_VERSION=22.04
  2. FROM ubuntu:$UBUNTU_VERSION as build
  3. RUN apt-get update && \
  4. apt-get install -y build-essential python3 python3-pip
  5. COPY requirements.txt requirements.txt
  6. RUN pip install --upgrade pip setuptools wheel \
  7. && pip install -r requirements.txt
  8. WORKDIR /app
  9. COPY . .
  10. RUN make
  11. ENTRYPOINT ["/app/.devops/tools.sh"]