full.Dockerfile 410 B

12345678910111213141516171819202122
  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 git
  5. COPY requirements.txt requirements.txt
  6. COPY requirements requirements
  7. RUN pip install --upgrade pip setuptools wheel \
  8. && pip install -r requirements.txt
  9. WORKDIR /app
  10. COPY . .
  11. RUN make
  12. ENV LC_ALL=C.utf8
  13. ENTRYPOINT ["/app/.devops/tools.sh"]