Rasa X Docker, no module named typing_Extensions

Hello. I am using rasa 2.4 and rasa x 37.1. Both work without problem in my local machine. I followed remote server instrallation instructions for docker. I am getting the following error for my action server. My action server works in local mode. I think there is a problem with the docker image.

 File "/app/actions/actions.py", line 14, in <module>
    from rasa_sdk.types import DomainDict
  File "/app/rasa_sdk/types.py", line 3, in <module>
    from typing_extensions import TypedDict
ModuleNotFoundError: No module named 'typing_extensions'

Can you show you Dockerfile?

version : ‘3.4’ services: app: image: ‘rasa/rasa-sdk:latest’ volumes: - ‘./actions:/app/actions’ expose: - ‘5055’ depends_on: - rasa-production