We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43d83fa commit d260b9fCopy full SHA for d260b9f
Dockerfile
@@ -9,12 +9,12 @@ FROM mhart/alpine-node:10
9
RUN apk add --no-cache make gcc g++ python
10
11
ENV http_port=5001
12
-ENV rasa_endpoint "http://10.211.55.8:5005"
+ENV rasa_endpoint "http://localhost:5005"
13
ENV jwtsecret "mysecret"
14
ENV loglevel "info"
15
ENV admin_username "admin"
16
ENV admin_password "admin"
17
-ENV db_schema "3.0.0"
+ENV db_schema "3.0.1"
18
19
WORKDIR /opt/rasaui
20
@@ -24,12 +24,6 @@ COPY ./package*.json ./
24
COPY ./server ./server
25
COPY ./web ./web
26
27
-
28
-#RUN addgroup -S rasaui \
29
-# && adduser -G rasaui -S rasaui \
30
-# && chown -R rasaui:rasaui .
31
32
EXPOSE ${http_port}
33
-#USER rasaui
34
35
ENTRYPOINT sh -c "hostname -i; npm start"
0 commit comments