Skip to content Skip to sidebar Skip to footer

Google Cloud Build Permission Error While Deploying Rasa To App Engine

I am trying to deploy a rasa project described like here to google app engine, But the build failed due to some permission issues The scripts try to create a folder inside contai

Solution 1:

It was due to permission issue of the docker, fixed by adding the USER root

FROM rasa/rasa
USER root
ENV BOT_ENV=production

COPY . /var/www
WORKDIR /var/www

RUN rasa train

ENTRYPOINT [ "rasa", "run", "-p", "8080"]

Post a Comment for "Google Cloud Build Permission Error While Deploying Rasa To App Engine"