From 91a4b25aa45fe33ed6e62da40e47eaf336c062d6 Mon Sep 17 00:00:00 2001 From: Roshan Piyush Date: Thu, 23 Dec 2021 02:54:55 +0530 Subject: [PATCH] Fixes #14: alpine version inconsistency --- services/workshop/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/services/workshop/Dockerfile b/services/workshop/Dockerfile index c694d389..c7af6712 100644 --- a/services/workshop/Dockerfile +++ b/services/workshop/Dockerfile @@ -13,7 +13,7 @@ # limitations under the License. -FROM python:3.8-alpine3.13 as build +FROM python:3.8-alpine3.15 as build # Not using alpine based on suggestion # https://pythonspeed.com/articles/alpine-docker-python/ @@ -35,7 +35,7 @@ WORKDIR /app COPY ./ /app RUN pip install wheel && pip wheel . --wheel-dir /app/wheels -FROM python:3.8-alpine +FROM python:3.8-alpine3.15 ADD https://github.com/ufoscout/docker-compose-wait/releases/download/2.7.3/wait /wait RUN chmod +x /wait COPY --from=build /app /app