Created
June 6, 2022 17:31
-
-
Save rgstephens/8af812fe16dfb0a042e23a7daf78447c to your computer and use it in GitHub Desktop.
Rasa 3.0.6 aarch64
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Dockerfile from https://hub.docker.com/r/rasa/rasa-sdk/dockerfile | |
# Git Repo from https://github.com/RasaHQ/rasa-sdk | |
#FROM python:3.6-slim | |
#FROM rasa/rasa-sdk:${RASA_SDK_VERSION} | |
FROM rasa/rasa-sdk:3.0.6 | |
ARG DEBIAN_FRONTEND=noninteractive | |
ENV TZ=Americas/Los_Angeles | |
COPY actions /app/actions | |
USER root | |
RUN apt-get update -qq && \ | |
apt-get install -y --no-install-recommends \ | |
vim \ | |
emacs \ | |
build-essential && \ | |
apt-get clean && \ | |
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* | |
RUN apt-get update && apt-get dist-upgrade -y --no-install-recommends | |
RUN pip install --no-cache-dir -r /app/actions/requirements-actions.txt | |
USER 1001 | |
EXPOSE 5055 | |
CMD ["start", "--actions", "actions"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment