Skip to content

Commit

Permalink
fix: docker image build
Browse files Browse the repository at this point in the history
  • Loading branch information
flobz committed Aug 31, 2024
1 parent 1adc418 commit e7d3f7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ ARG DEBIAN_FRONTEND=noninteractive
FROM debian:bullseye-slim AS builder
ARG PSACC_VERSION="0.0.0"
ARG PYTHON_DEP
RUN BUILD_DEP='python3-pip python3-setuptools python3-dev libblas-dev liblapack-dev gfortran libffi-dev libxml2-dev libxslt1-dev make automake gcc g++ subversion' ; \
RUN BUILD_DEP='python3-pip python3-setuptools python3-dev libblas-dev liblapack-dev gfortran libffi-dev libxml2-dev libxslt1-dev make automake gcc g++ subversion ninja-build' ; \
apt-get update && apt-get install -y --no-install-recommends $BUILD_DEP $PYTHON_DEP;
RUN pip3 install --upgrade pip && mkdir psa-car-controller && pip3 install poetry
COPY ./dist/psa_car_controller-${PSACC_VERSION}-py3-none-any.whl .
Expand Down

0 comments on commit e7d3f7f

Please sign in to comment.