skip to Main Content

Setting up GDAL in Docker

I’m trying to setup GDAL in Docker to support a Python back-end web server using Flask. After running docker compose up -d I’m receiving the following error: Could not find gdal-config. Make sure you have installed the GDAL native library…

VIEW QUESTION

Docker – How to include .png files in Quarkus build

I have .png files in src/main/resources that I want to access on my deployed Quarkus app, but when I use Thread.currentThread().getContextClassLoader().getResource("image.png") it points me to the jar file. io.vertx.core.file.FileSystemException: Unable to open file at path '/file:/deployments/app/app-api-1.0.0-SNAPSHOT.jar!/image.png' However, when I use…

VIEW QUESTION

Cannot install ale-py in docker

I'm trying to build dockerfile as below: FROM python:3.10 RUN pip install ale-py If I try to build, I get error msg like: 1.436 ERROR: Could not find a version that satisfies the requirement ale-py (from versions: none) 1.436 ERROR:…

VIEW QUESTION
Back To Top
Search