Skip to content
Snippets Groups Projects
Verified Commit 714e7d06 authored by Vincent Sellier's avatar Vincent Sellier
Browse files

counters: Install 'retry' package to simplify the refresh history cronjob

Related to swh/infra/sysadm-environment#5387
parent c751c2a9
No related branches found
No related tags found
No related merge requests found
# Deeply inspired from the Dockerfile of the swh-storage project
FROM python:3.10-bullseye
# retry command is used by the refresh-history cron job
# to ensure the rpc service is well up
RUN apt-get -y update && \
apt-get -y upgrade && \
apt-get install -y libcmph-dev librdkafka-dev && \
apt-get install -y libcmph-dev librdkafka-dev retry && \
apt clean && \
addgroup --gid 1000 swh && \
useradd --gid 1000 --uid 1000 -m -d /opt/swh swh && \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment