From 32e9c56e0ae44cec15e3672882c96c57b699fcdf Mon Sep 17 00:00:00 2001 From: Francisco Pessano Date: Fri, 23 Dec 2022 00:12:09 -0300 Subject: [PATCH] added envs to dockerfile --- Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Dockerfile b/Dockerfile index 3dc0d17..9e54ada 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,9 @@ FROM alpine:latest as build +ENV REACT_APP_FIREBASE_API_KEY +ENV REACT_APP_FIREBASE_APP_ID +ENV REACT_APP_ENVIRONMENT + RUN apk add --update nodejs npm RUN npm install --global yarn