Skip to content

Commit

Permalink
Update UI Server
Browse files Browse the repository at this point in the history
  • Loading branch information
temporal-data committed Mar 7, 2023
1 parent deb66c7 commit 84fc330
Show file tree
Hide file tree
Showing 11 changed files with 1,129 additions and 1,097 deletions.
32 changes: 32 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
ARG BASE_SERVER_IMAGE=temporalio/base-server:1.10.0
ARG BASE_BUILDER_IMAGE=temporalio/base-builder:1.9.0

FROM ${BASE_BUILDER_IMAGE} AS server-builder

WORKDIR /home/server-builder

COPY Makefile ./
RUN make install-utils

COPY go.mod go.sum ./
RUN go mod download

COPY . ./

RUN make build-server

##### UI server #####
FROM ${BASE_SERVER_IMAGE} AS ui-server
WORKDIR /home/ui-server

RUN addgroup -g 5000 temporal
RUN adduser -u 5000 -G temporal -D temporal

COPY --from=server-builder /home/server-builder/ui-server ./
COPY docker/start-ui-server.sh ./start-ui-server.sh
COPY docker/config_template.yaml ./config/config_template.yaml

RUN chown temporal:temporal /home/ui-server -R

EXPOSE 8080
ENTRYPOINT ["./start-ui-server.sh"]
2 changes: 1 addition & 1 deletion ui/assets/_app/immutable/chunks/29-89faf6d6.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
import{_ as e}from"./_page-617ecf3b.js";export{e as universal};
import{_ as e}from"./_page-17d87ba6.js";export{e as universal};
2 changes: 1 addition & 1 deletion ui/assets/_app/immutable/chunks/30-89faf6d6.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
import{_ as e}from"./_page-66872a4d.js";export{e as universal};
import{_ as e}from"./_page-617ecf3b.js";export{e as universal};
2 changes: 1 addition & 1 deletion ui/assets/_app/immutable/chunks/31-89faf6d6.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
import{_ as e}from"./_page-17d87ba6.js";export{e as universal};
import{_ as e}from"./_page-66872a4d.js";export{e as universal};

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion ui/assets/_app/immutable/start-99bd2064.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion ui/assets/_app/version.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"version":"1678205652110"}
{"version":"1678209717810"}
2 changes: 1 addition & 1 deletion ui/assets/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
env: {},
paths: {"base":"","assets":""},
target: document.querySelector('[data-sveltekit-hydrate="45h"]').parentNode,
version: "1678205652110"
version: "1678209717810"
});
</script></div>
</body>
Expand Down
Loading

0 comments on commit 84fc330

Please sign in to comment.