-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Dockerfile for serving the frontend and proxying calls to the bff. * An example docker-compose for running the stack. * Webpack config for proxying and url rewriting for the frontend in dev mode. * A frontend Makefile for building the docker image Signed-off-by: Alex Creasy <alex@creasy.dev>
- Loading branch information
1 parent
7e39377
commit fe3f8cf
Showing
5 changed files
with
87 additions
and
1 deletion.
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
services: | ||
frontend: | ||
build: ./frontend | ||
container_name: model-registry-ui | ||
ports: | ||
- 8080:8080 | ||
environment: | ||
API_URL: http://model-registry-bff:4001 | ||
networks: | ||
- model_registry | ||
bff: | ||
build: ./bff | ||
container_name: model-registry-bff | ||
command: | ||
- "--mock-k8s-client=true" | ||
networks: | ||
- model_registry | ||
|
||
networks: | ||
model_registry: | ||
name: model_registry |
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
FROM node:18 as build-stage | ||
|
||
WORKDIR /usr/src/app | ||
|
||
COPY . /usr/src/app | ||
|
||
RUN npm run build | ||
|
||
FROM nginxinc/nginx-unprivileged | ||
|
||
ENV API_URL="http://localhost:4001" | ||
ENV NGINX_ENVSUBST_FILTER="API_URL" | ||
|
||
COPY --from=build-stage /usr/src/app/dist/ "/usr/share/nginx/html" | ||
COPY --from=build-stage /usr/src/app/nginx.conf "/etc/nginx/templates/default.conf.template" |
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
CONTAINER_TOOL ?= docker | ||
IMG ?= model-registry-ui:latest | ||
|
||
.PHONY: all | ||
all: docker-build | ||
|
||
.PHONY: help | ||
help: ## Display this help. | ||
@awk 'BEGIN {FS = ":.*##"; printf "\nUsage:\n make \033[36m<target>\033[0m\n"} /^[a-zA-Z_0-9-]+:.*?##/ { printf " \033[36m%-15s\033[0m %s\n", $$1, $$2 } /^##@/ { printf "\n\033[1m%s\033[0m\n", substr($$0, 5) } ' $(MAKEFILE_LIST) | ||
|
||
.PHONY: docker-build | ||
docker-build: | ||
$(CONTAINER_TOOL) build -t ${IMG} . |
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
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
server { | ||
listen 8080 default_server; | ||
listen [::]:8080 default_server; | ||
server_name _; | ||
root /usr/share/nginx/html; | ||
gzip on; | ||
access_log /dev/stdout main; | ||
|
||
location / { | ||
try_files $uri $uri/ /index.html; | ||
} | ||
|
||
location /p/ { | ||
rewrite ^/p/(.*)$ /$1 break; | ||
proxy_set_header Host $host; | ||
proxy_set_header X-Real-IP $remote_addr; | ||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; | ||
proxy_set_header X-Forwarded-Proto $scheme; | ||
proxy_pass ${API_URL}; | ||
} | ||
} | ||
|