From 69f6469f1a2155fce182023621ec038a03e53025 Mon Sep 17 00:00:00 2001 From: Carlos Trejo Date: Tue, 22 Oct 2024 14:55:38 -0500 Subject: [PATCH] 100 - Fix streamlit docker warnings --- Streamlit/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Streamlit/Dockerfile b/Streamlit/Dockerfile index b3f7f82..f8a54d3 100644 --- a/Streamlit/Dockerfile +++ b/Streamlit/Dockerfile @@ -20,7 +20,7 @@ ARG BASE_IMAGE=quay.io/enthought/edm-rockylinux-8:latest -FROM $BASE_IMAGE as stage_one +FROM $BASE_IMAGE AS stage_one ARG EDGE_BUNDLE=app_environment.zbundle COPY $EDGE_BUNDLE /tmp/app_environment.zbundle @@ -38,7 +38,7 @@ RUN edm run -- python -m pip install --no-cache-dir \ # Second stage -FROM $BASE_IMAGE as stage_two +FROM $BASE_IMAGE AS stage_two LABEL source="https://github.com/enthought/edge-examples/blob/main/Streamlit/Dockerfile"