Installing Tableau bride on Amazon Linux
Step 1 : Create a folder for Docker image and generate Docker configuration file
mkdir Docker
cd Docker
touch Dockerfile
Step 2: Download the Tableau bridge package using wget
Example : wget https://downloads.tableau.com/tssoftware/TableauBridge-20251.25.0520.1026.x86_64.rpm
Step 3: Add following configuration to Docker file
vi Dockerfile
# Use Amazon Linux 2023 as the base image
FROM public.ecr.aws/amazonlinux/amazonlinux:2023
# Update system packages
RUN yum -y update
# Copy the Bridge RPM package into the container
COPY TableauBridge-20251.25.0520.1026.x86_64.rpm /tmp/
# Install the Bridge RPM and clean up
RUN ACCEPT_EULA=y yum install -y /tmp/TableauBridge-20251.25.0520.1026.x86_64.rpm && rm -f /tmp/TableauBridge-20251.25.0520.1026.x86_64.rpm.rpm
# Set the entry point for the container
ENTRYPOINT ["/opt/tableau/tableau_bridge/bin/tableau-bridge-cli"]
Step 4 : Build the base Image using below command
docker buildx build --platform=linux/amd64 -t bridge_base .
Note : . indicates location of Docker folder. If you are running this command outside Docker folder, instead of . mention Docker folder location here
Ex : docker buildx build --platform=linux/amd64 -t bridge_base /Docker
Check that the base image you created is displayed in the list of images:
docker images | grep bridge
To add driver and run the Tableau bridge, Please follow from Step 2 in the help article https://help.tableau.com/current/online/en-us/to_bridge_linux_install.htm
005036329

We use three kinds of cookies on our websites: required, functional, and advertising. You can choose whether functional and advertising cookies apply. Click on the different cookie categories to find out more about each category and to change the default settings.
Privacy Statement
Required cookies are necessary for basic website functionality. Some examples include: session cookies needed to transmit the website, authentication cookies, and security cookies.
Functional cookies enhance functions, performance, and services on the website. Some examples include: cookies used to analyze site traffic, cookies used for market research, and cookies used to display advertising that is not directed to a particular individual.
Advertising cookies track activity across websites in order to understand a viewer’s interests, and direct them specific marketing. Some examples include: cookies used for remarketing, or interest-based advertising.