mib-payment-verify/.build/prod/keepalive.Dockerfile
Shihaam Abdul Rahman 80eb74c65c
All checks were successful
Build and Push Docker Images / Build and Push Docker Images (push) Successful in 1m20s
add jq to keep alive
2025-01-10 08:24:12 +05:00

11 lines
205 B
Docker

FROM debian:bullseye-slim
RUN apt-get update && apt-get install -y curl jq && apt-get clean && rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY keepalive.sh .
RUN chmod +x keepalive.sh
CMD ./keepalive.sh