full.Dockerfile 371 B

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