Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docker/debian/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM debian:13.1-slim@sha256:1caf1c703c8f7e15dcf2e7769b35000c764e6f50e4d7401c355fb0248f3ddfdb
FROM debian:13.1-slim@sha256:66b37a5078a77098bfc80175fb5eb881a3196809242fd295b25502854e12cbec

# apt-get update && apt-get install lsb-release -y && lsb_release -a

Expand Down Expand Up @@ -145,7 +145,7 @@
ENV LD_LIBRARY_PATH="/usr/local/lib"
ENV LDFLAGS="$MYLDFLAGS"
ENV CFLAGS="$MYCFLAGS"
ENV CXXFLAGS="$MYCXXFLAGS"

Check warning on line 148 in docker/debian/Dockerfile

View workflow job for this annotation

GitHub Actions / debian

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$MYCXXFLAGS' (did you mean $MYCFLAGS?) More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/

# Configure compile and install GRASS
ENV NUMTHREADS=4
Expand Down Expand Up @@ -207,7 +207,7 @@

# enable GRASS Python session support
## grass --config python-path
ENV PYTHONPATH="/usr/local/grass/etc/python:${PYTHONPATH}"

Check warning on line 210 in docker/debian/Dockerfile

View workflow job for this annotation

GitHub Actions / debian

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$PYTHONPATH' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/
# enable GRASS ctypes imports
## grass --config path
ENV LD_LIBRARY_PATH="/usr/local/grass/lib:$LD_LIBRARY_PATH"
Expand Down
Loading