Skip to content

Commit

Permalink
fixed issue with jobs deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewplummer committed Jun 25, 2024
1 parent ccb67fa commit 7ea97e7
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion services/api/Dockerfile.jobs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,12 @@ ARG NODE_ENV=production

# Update & install required packages
RUN apk add --update bash jq curl gcc musl-dev python3 python3-dev py3-pip;
RUN python3 -m pip install --user pipx yq

# Create and activate a virtual environment
RUN python3 -m venv /opt/venv
ENV PATH="/opt/venv/bin:$PATH"

RUN python3 -m pip install pipx yq
RUN python3 -m pipx ensurepath
RUN python3 -m pipx install yacron
RUN wget https://github.com/mikefarah/yq/releases/download/v4.6.3/yq_linux_386.tar.gz -O - | tar xz && mv yq_linux_386 /usr/bin/yq
Expand Down

0 comments on commit 7ea97e7

Please sign in to comment.