Skip to content

Commit

Permalink
Merge pull request #7 from keploy/arch-fix
Browse files Browse the repository at this point in the history
fix: keploy arch to arm64 from amd64
  • Loading branch information
charankamarapu authored Dec 4, 2024
2 parents 0c3a2ca + 6c2fb86 commit d2985cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions projects/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ RUN python3.12 -m venv venv && \
if [ -f "requirements.txt" ]; then pip install --no-cache-dir -r requirements.txt; fi

# Install keploy
RUN curl --silent -o keploy --location "https://keploy-enterprise.s3.us-west-2.amazonaws.com/releases/latest/enterprise_linux_amd64"
RUN curl --silent -o keploy --location "https://keploy-enterprise.s3.us-west-2.amazonaws.com/releases/latest/enterprise_linux_arm64"
RUN chmod a+x keploy && mkdir -p /usr/local/bin && mv keploy /usr/local/bin

# Final Stage: Assemble the final image
Expand Down Expand Up @@ -66,4 +66,4 @@ RUN chmod +x /usr/local/bin/keploy
ENV PYTHONUNBUFFERED=1
ENV PYTHONPATH="/app/python-app/venv/lib/python3.12/site-packages"

CMD ["sleep", "infinity"]
CMD ["sleep", "infinity"]

0 comments on commit d2985cf

Please sign in to comment.