From d260b9fcd4c494b01ca68bed269065449dc8c041 Mon Sep 17 00:00:00 2001 From: Paul Aschmann Date: Fri, 13 Sep 2019 08:37:29 -0400 Subject: [PATCH] - Change to dockerfile --- Dockerfile | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/Dockerfile b/Dockerfile index d7edd27..52296f0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,12 +9,12 @@ FROM mhart/alpine-node:10 RUN apk add --no-cache make gcc g++ python ENV http_port=5001 -ENV rasa_endpoint "http://10.211.55.8:5005" +ENV rasa_endpoint "http://localhost:5005" ENV jwtsecret "mysecret" ENV loglevel "info" ENV admin_username "admin" ENV admin_password "admin" -ENV db_schema "3.0.0" +ENV db_schema "3.0.1" WORKDIR /opt/rasaui @@ -24,12 +24,6 @@ COPY ./package*.json ./ COPY ./server ./server COPY ./web ./web - -#RUN addgroup -S rasaui \ -# && adduser -G rasaui -S rasaui \ -# && chown -R rasaui:rasaui . - EXPOSE ${http_port} -#USER rasaui ENTRYPOINT sh -c "hostname -i; npm start"