Query engine binary for current platform "debian-openssl-1.0.x" could not be found

Viewed 1324

I need help on Dockerize my Prisma + GraphQL, I have tried many more options and tricks to resolve this issue but can not able to make it work.

Seems like when I actually run the application without Dockerize application work perfectly like below

enter image description here

But after Dockerize the App, it shows me an error like below

enter image description here

Can anyone help me out with this, I can not able to publish or Dockerize the app in local environment?

Dockerfile

# pull the official base image  
FROM node:10.11.0 
 
# set your working directory  
WORKDIR /api  

# install application dependencies  
COPY package*.json ./

RUN npm install --silent  

RUN npm install -g @prisma/cli

# add app  
COPY . ./  
 
# will start app  
CMD ["node", "src/index.js"] 
0 Answers
Related