Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

411
Views
How to install AWS Redshift ODBC driver to Alpine in Docker. (Node.js)

I am creating a database connection to AWS Redshift using ODBC for Node.js. It is easy to install into Windows using the following link. https://docs.aws.amazon.com/redshift/latest/mgmt/configure-odbc-connection.html

But as I am trying to execute the application using Docker container I have to install is to Node:Alpine.

What are the ways of doing it?

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

alpine does not support the C/C++ library version required by the driver. If you can live with slim, here's how to install:

FROM node:lts-slim
RUN apt-get update \
    && apt-get install wget -y \
    && wget https://s3.amazonaws.com/redshift-downloads/drivers/odbc/1.4.45.1000/AmazonRedshiftODBC-64-bit-1.4.45.1000-1.x86_64.deb -qO /tmp/AmazonRedshiftODBC-64-bit-1.4.45.1000-1.x86_64.deb \
    && apt-get install /tmp/AmazonRedshiftODBC-64-bit-1.4.45.1000-1.x86_64.deb \
    && rm /tmp/AmazonRedshiftODBC-64-bit-1.4.45.1000-1.x86_64.deb
about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!