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/alpine/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM alpine:3.23@sha256:25109184c71bdad752c8312a8623239686a9a2071e8825f20acb8f2198c3f659 AS common
FROM alpine:3.23@sha256:5b10f432ef3da1b8d4c7eb6c487f2f5a8f096bc91145e68878dd4a5019afde11 AS common

# Based on:
# https://github.com/mundialis/docker-grass-gis/blob/master/Dockerfile
Expand Down Expand Up @@ -109,7 +109,7 @@
"

# Set environmental variables for GRASS compilation, without debug symbols
ENV MYCFLAGS="-O2 -std=gnu99 -m64" \

Check warning on line 112 in docker/alpine/Dockerfile

View workflow job for this annotation

GitHub Actions / build (alpine, alpine, docker/alpine/Dockerfile, GUI=without)

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$MYCFLAGS' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/

Check warning on line 112 in docker/alpine/Dockerfile

View workflow job for this annotation

GitHub Actions / build (alpine, alpine, docker/alpine/Dockerfile, GUI=without)

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$MYLDFLAGS' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/

Check warning on line 112 in docker/alpine/Dockerfile

View workflow job for this annotation

GitHub Actions / build (alpine, alpine, docker/alpine/Dockerfile, GUI=without)

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$MYCXXFLAGS' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/
MYLDFLAGS="-s -Wl,--no-undefined -lblas" \
# CXX stuff:
LD_LIBRARY_PATH="/usr/local/lib" \
Expand Down Expand Up @@ -193,7 +193,7 @@

# GRASS specific
# allow work with MAPSETs that are not owned by current user
ENV GRASS_SKIP_MAPSET_OWNER_CHECK=1 \

Check warning on line 196 in docker/alpine/Dockerfile

View workflow job for this annotation

GitHub Actions / build (alpine, alpine, docker/alpine/Dockerfile, GUI=without)

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$PYTHONPATH' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/
SHELL="/bin/bash" \
# https://proj.org/usage/environmentvars.html#envvar-PROJ_NETWORK
PROJ_NETWORK=ON \
Expand Down
Loading