-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
FROM harbor.1000kit.org/1000kit/spa-base:v1 | ||
FROM ghcr.io/onecx/docker-spa-base:v1 | ||
|
||
# Copy locations config | ||
# Copy nginx configuration | ||
COPY nginx/locations.conf $DIR_LOCATION/locations.conf | ||
# Copy application build | ||
COPY dist/onecx-announcement-ui/ $DIR_HTML | ||
|
||
#Optional extend list of application environments | ||
# Optional extend list of application environments | ||
#ENV CONFIG_ENV_LIST BFF_URL,APP_BASE_HREF | ||
|
||
# Application environments default values | ||
ENV BFF_URL http://tkit-menu-management-bff:8080/ | ||
ENV APP_BASE_HREF /announcement-mgmt/ | ||
ENV BFF_URL http://onecx-announcement-bff:8080/ | ||
ENV APP_BASE_HREF /announcement/ | ||
|
||
RUN chmod 775 -R $DIR_HTML/assets | ||
USER 1001 |