Skip to content

Commit 4ee6475

Browse files
Patrick Schustertobifalk
Patrick Schuster
authored andcommitted
ui: Add webserver for replay feature
Signed-off-by: Tobias Falkenstein <[email protected]>
1 parent 0f62c73 commit 4ee6475

File tree

7 files changed

+2868
-0
lines changed

7 files changed

+2868
-0
lines changed

ui/server/Dockerfile

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
FROM node:14.16.1
2+
3+
WORKDIR /app
4+
5+
ENV CLOE_UI_SERVER_ROOT_DIR /app
6+
7+
# Install dependencies
8+
COPY package.json ./
9+
COPY yarn.lock ./
10+
RUN yarn install
11+
12+
COPY *.js ./
13+
14+
EXPOSE 4000
15+
16+
# Start Server
17+
ENTRYPOINT ["npm", "run", "server"]

0 commit comments

Comments
 (0)