From b92bd7656ce5e4147ba1d382f31e5d5428c28a16 Mon Sep 17 00:00:00 2001 From: dm1sh Date: Mon, 12 Dec 2022 09:25:56 +0300 Subject: [PATCH] Removed hardcoded env --- Dockerfile | 2 -- 1 file changed, 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index d05fe29..16553d2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,8 +4,6 @@ WORKDIR /app COPY ./package.json ./ RUN npm install COPY ./ ./ -ENV SNOWPACK_PUBLIC_API_URL=https://publitebackend.dmitriy.icu -ENV SNOWPACK_PUBLIC_BASE_URL=https://publite.dmitriy.icu RUN NODE_ENV=production npm run build FROM node:alpine