Skip to content
Snippets Groups Projects
Commit ebf94155 authored by Charlotte Hausman's avatar Charlotte Hausman
Browse files

try not using localhost

parent 722b2d91
No related branches found
No related tags found
2 merge requests!1452Merge 2.8.2 to main,!1396changes for local builds
Pipeline #10369 passed
......@@ -5,7 +5,7 @@ CACHE_IMAGE_TAG=local # TODO: remove once cache image removed
DEPLOY_ENV=local # the default environment to build for (one of: dev, test, local, prod)
ENV=local # the default environment to build for (one of: dev, test, local, prod)
TAG=local # the tag name to pull images from when building
ENV_HOST="ws-dev.nrao.edu"
ENV_HOST="localhost"
DL_HOST="https://dl-dsoc.nrao.edu"
NG_APP_WS_VERSION=${ENV}
WS_VERSION=unknown-version
......
......@@ -37,6 +37,9 @@ FROM base as base-build
ARG env=dev
ENV ENV=${env}
ARG ENV_HOST
ENV ENV_HOST=${ENV_HOST}
# Requires build-arg WS_VERSION
# Build arg that sets Workspaces Version; defaults to "dev" if no build arg is given
ENV NG_APP_WS_VERSION=${WS_VERSION}
......
......@@ -3,6 +3,8 @@ FROM python:3.10-slim-buster as base
ARG DEPLOY_ENV
ARG WS_VERSION=unknown-version
ENV DEPLOY_ENV=${DEPLOY_ENV}
ARG ENV_HOST
ENV ENV_HOST=${ENV_HOST}
# Environment variables
ENV PIP_NO_CACHE_DIR false
......
......@@ -4,6 +4,8 @@ FROM python:3.10-slim-buster as base
ARG WS_VERSION=unknown-version
ARG DEPLOY_ENV
ENV DEPLOY_ENV=${DEPLOY_ENV}
ARG ENV_HOST
ENV ENV_HOST=${ENV_HOST}
# Environment variables
ENV PIP_NO_CACHE_DIR false
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment