Skip to content

Commit

Permalink
Add python3.11 install to runtime stage
Browse files Browse the repository at this point in the history
  • Loading branch information
GDYendell committed Jun 24, 2024
1 parent bef3b8b commit 6cfa4c5
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,12 @@ RUN python -m pip install /tmp/odin-data/python[meta_writer]
FROM common AS runtime

# runtime system dependencies
RUN apt-get update -y && apt-get install -y --no-install-recommends \
RUN add-apt-repository -y ppa:deadsnakes/ppa && \
apt-get update -y && apt-get install -y --no-install-recommends \
# odin-data C++ dependencies
libblosc-dev libboost-all-dev libhdf5-dev liblog4cxx-dev libpcap-dev libczmq-dev && \
libblosc-dev libboost-all-dev libhdf5-dev liblog4cxx-dev libpcap-dev libczmq-dev
# python dependencies
python3.11 && \
# tidy up
apt-get -y clean all

Expand Down

0 comments on commit 6cfa4c5

Please sign in to comment.