From 4d87541d967e61c6243f34f052e74f28fe0bc1ab Mon Sep 17 00:00:00 2001 From: Thomas Citharel Date: Thu, 4 Feb 2021 18:58:15 +0100 Subject: [PATCH] Stick to stable version of the Docker base images Signed-off-by: Thomas Citharel --- docker/production/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/production/Dockerfile b/docker/production/Dockerfile index ca01e242b..b8b9c2574 100644 --- a/docker/production/Dockerfile +++ b/docker/production/Dockerfile @@ -1,5 +1,5 @@ # First build the application assets -FROM node:alpine as assets +FROM node:14-alpine as assets RUN apk add --no-cache python build-base libwebp-tools bash imagemagick ncurses @@ -8,7 +8,7 @@ RUN yarn install \ && yarn run build # Then, build the application binary -FROM elixir:alpine AS builder +FROM elixir:1.11-alpine AS builder RUN apk add --no-cache build-base git cmake