Skip to content

Commit

Permalink
feat: begin to add custom gnocchi container
Browse files Browse the repository at this point in the history
  • Loading branch information
LukeRepko committed Aug 6, 2024
1 parent faffb89 commit 9851def
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions Containerfiles/GnocchiRXT-Containerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
FROM ubuntu:22.04
ARG VERSION=4.6.2
ENV GNOCCHI_VERSION ${VERSION:-master}
RUN apt update
RUN apt install -y build-essential software-properties-common git curl apache2
RUN add-apt-repository ppa:deadsnakes/ppa -y
RUN apt update
RUN apt install -y python3.10 python3.10-dev
RUN curl -sS https://bootstrap.pypa.io/get-pip.py | python3.10
RUN pip install git+https://github.com/gnocchixyz/gnocchi.git@${GNOCCHI_VERSION}

0 comments on commit 9851def

Please sign in to comment.