From 7c2852a51bf322e7751443e07f3d859f73f8bf29 Mon Sep 17 00:00:00 2001 From: Pierre-Olivier Mercier Date: Fri, 19 Nov 2021 01:39:19 +0100 Subject: [PATCH] Force image version in Dockerfile --- hasher/Dockerfile | 2 +- rng/Dockerfile | 2 +- worker/Dockerfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/hasher/Dockerfile b/hasher/Dockerfile index 62be928..62d484a 100644 --- a/hasher/Dockerfile +++ b/hasher/Dockerfile @@ -1,4 +1,4 @@ -FROM ruby:alpine +FROM ruby:3-alpine RUN apk add --update build-base curl RUN gem install sinatra RUN gem install thin diff --git a/rng/Dockerfile b/rng/Dockerfile index 34cf43b..c63b0e9 100644 --- a/rng/Dockerfile +++ b/rng/Dockerfile @@ -1,4 +1,4 @@ -FROM python:alpine +FROM python:3-alpine RUN pip install Flask COPY rng.py / CMD ["python", "rng.py"] diff --git a/worker/Dockerfile b/worker/Dockerfile index 8b9a74b..9cf64d9 100644 --- a/worker/Dockerfile +++ b/worker/Dockerfile @@ -1,4 +1,4 @@ -FROM python:alpine +FROM python:3-alpine RUN pip install influxdb RUN pip install requests COPY worker.py /