Skip to content

Commit

Permalink
- Change to dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
paschmann committed Sep 13, 2019
1 parent 43d83fa commit d260b9f
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions Dockerfile
Expand Up @@ -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

Expand All @@ -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"

0 comments on commit d260b9f

Please sign in to comment.