mirror of https://github.com/commaai/rednose.git
no pyenv
This commit is contained in:
parent
24c50f57bb
commit
72b3479bab
10
Dockerfile
10
Dockerfile
|
@ -1,13 +1,7 @@
|
||||||
FROM ubuntu:24.04
|
FROM ubuntu:24.04
|
||||||
|
|
||||||
ENV DEBIAN_FRONTEND=noninteractive
|
ENV DEBIAN_FRONTEND=noninteractive
|
||||||
RUN apt-get update && apt-get install -y capnproto libcapnp-dev clang wget git autoconf libtool curl make build-essential libssl-dev zlib1g-dev libbz2-dev libreadline-dev libsqlite3-dev llvm libncurses5-dev libncursesw5-dev xz-utils tk-dev libffi-dev liblzma-dev python3-openssl libeigen3-dev
|
RUN apt-get update && apt-get install -y capnproto libcapnp-dev clang wget git autoconf libtool curl make build-essential libssl-dev zlib1g-dev libbz2-dev libreadline-dev libsqlite3-dev llvm libncurses5-dev libncursesw5-dev xz-utils tk-dev libffi-dev liblzma-dev python3-openssl libeigen3-dev python3-pip python3-dev
|
||||||
|
|
||||||
RUN curl -L https://github.com/pyenv/pyenv-installer/raw/master/bin/pyenv-installer | bash
|
|
||||||
ENV PATH="/root/.pyenv/bin:/root/.pyenv/shims:${PATH}"
|
|
||||||
RUN pyenv install 3.11.4
|
|
||||||
RUN pyenv global 3.11.4
|
|
||||||
RUN pyenv rehash
|
|
||||||
|
|
||||||
WORKDIR /project
|
WORKDIR /project
|
||||||
|
|
||||||
|
@ -15,6 +9,6 @@ ENV PYTHONPATH=/project
|
||||||
|
|
||||||
COPY . .
|
COPY . .
|
||||||
RUN rm -rf .git
|
RUN rm -rf .git
|
||||||
RUN pip3 install --no-cache-dir -r requirements.txt
|
RUN pip3 install --break-system-packages --no-cache-dir -r requirements.txt
|
||||||
RUN python3 setup.py install
|
RUN python3 setup.py install
|
||||||
RUN scons -c && scons -j$(nproc)
|
RUN scons -c && scons -j$(nproc)
|
||||||
|
|
Loading…
Reference in New Issue