From 16c07a06c54ebd881af61d885cfc11013cc89092 Mon Sep 17 00:00:00 2001 From: f Date: Tue, 11 Jul 2023 10:49:58 -0300 Subject: [PATCH] fix: make MAX_MEMORY a default env variable --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 954eefc..63d5165 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,10 @@ -ARG MAX_MEMORY=100mb ARG ALPINE_VERSION=3.13.6 ARG BASE_IMAGE=sutty/monit FROM ${BASE_IMAGE}:${ALPINE_VERSION} AS build MAINTAINER "f " ARG REDIS_VERSION=6.2.7 ARG MAX_MEMORY=100mb +ENV MAX_MEMORY=${MAX_MEMORY} RUN apk add --no-cache redis~${REDIS_VERSION}