Skip to content

Commit

Permalink
adds tooling to pod
Browse files Browse the repository at this point in the history
  • Loading branch information
fabricebrito committed Oct 17, 2023
1 parent 595f2f4 commit ea29abd
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,12 @@ RUN \
dpkg -i Stars.deb && \
rm Stars.deb

RUN \
echo "**** install yq, aws cli ****" && \
VERSION="v4.12.2" && \
BINARY="yq_linux_amd64" && \
wget --quiet https://github.com/mikefarah/yq/releases/download/${VERSION}/${BINARY}.tar.gz -O - |\
tar xz && mv ${BINARY} /usr/bin/yq

RUN \
ln -s /usr/bin/podman /usr/bin/docker
Expand All @@ -44,10 +50,14 @@ USER mambauser

RUN micromamba install -c conda-forge -n base python=3.7 pip nose2

RUN \
/opt/conda/bin/pip3 install awscli && \
/opt/conda/bin/pip3 install awscli-plugin-endpoint

WORKDIR /home/mambauser
RUN \
echo "**** install calrissian ****" && \
/opt/conda/bin/pip install calrissian
/opt/conda/bin/pip3 install calrissian


ENTRYPOINT []

0 comments on commit ea29abd

Please sign in to comment.