All Questions
Tagged with alpine or alpine-linux
1,878 questions
0
votes
0
answers
37
views
gcc:internal compiler error:Segmentation fault signal terminated programcc1
I am trying to build OpenSSL from source inside a Docker container based on an Alpine Linux toolchain image (ghcr.io/nokia/corteca-toolchain). The target architecture is AArch64, and this environment ...
Advice
0
votes
2
replies
65
views
is shc command available for alpine:edge docker image?
I need an alpine docker image to have shc installed.
So I spinned up a docker container with alpine:edge image, and issued the following commands:
/ # apk update
fetch https://dl-cdn.alpinelinux.org/...
2
votes
0
answers
85
views
Why doesn't CPython multiprocessing Semaphores don't create named semaphores in Alpine
CPython on Unix systems should create named semaphores, but when creating Semaphores on Alpine - there are none created. name attribute of SemLock is also empty.
https://github.com/python/cpython/blob/...
2
votes
1
answer
50
views
while-read not working int alpine docker image?
I'm trying to read a file content into variables inside an alpine image.
But even reading plane lines and printing them does not work:
echo:
image: alpine:latest
command: |
sh -c '
...
1
vote
1
answer
148
views
terra package installation failure in alpine
I was trying to install the R package terra in my computer running alpine edge.
The installation is unsuccessful with the following message -
/usr/include/fortify/stdio.h: In function '__to_xstring....
1
vote
0
answers
234
views
Dotnet unable to load shared library 'e_sqlite3' went targeting linux-x64
I have a project that is using EF core and SQLite. I am running on docker-dotnet-sdk:24.0.7-alpine3.18-net8.0-sdk. When I run dotnet test -c Release everything runs fine but when I run dotnet test -c ...
1
vote
0
answers
126
views
Git LFS tracked file still served as pointer inside Docker + nginx setup
We're hosting a Unity WebGL project using Docker, nginx, and GitHub. It has several builds underneath projects folder, and everything was working fine until I decided to switch to git LFS. After ...
0
votes
1
answer
286
views
Can't add Java to system path in Dockerized Alpine Linux
So I am trying to build a really small docker image, where I can run my java codes with latest version. I have tried with ubuntu, but I really want to play with alpine.
So I wrote the following ...
0
votes
0
answers
168
views
initial-exec TLS resolves to dynamic definition in file.dll
I am using golang:1.21-alpine3.20 to generate my DLL. using following command
go build -o project.dll -buildmode=c-shared ./cmd/main.go
Using Php code to trigger dll using FFI plugin please find ...
1
vote
1
answer
182
views
How to add Alpine scikit-learn to poetry environment on Alpine Docker container?
I have to use an python alpine docker image for my python project.
I use poetry for dependency management, and I need to add the scikit-learn package.
The scikit-learn within poetry is not working on ...
0
votes
0
answers
91
views
Node.js Error: EACCES: permission denied, mkdir in Windows
There is a Node.js code running well in the alpine node Docker container in Linux (and macOS) environments.
import fs from 'fs';
...
const processorDir = path.join(LOCAL_PROC_PATH, 'processor');
if (!...
2
votes
1
answer
406
views
Docker PHP alpine can't configure Apache to use PHP
Im want to create a docker container where I can serve my PHP project with Apache.
Right now I'm using php:8.3.16-cli-alpine3.20 as the base image. The project depends on numerous extensions which I ...
-4
votes
2
answers
515
views
How to use alpine to reduce docker image size?
I am trying to minimize of size of my Docker image as small as possible, the Dockerfile looks like this:
ARG DISTRO=fedora
ARG FEDORA_VERSION=36
#FROM ${DISTRO}:${FEDORA_VERSION} AS dev
FROM ${DISTRO}...
0
votes
1
answer
150
views
Error while building LaTeX on Docker Alpine on M3 Max chip (arm64/aarch64): Quitting, no binary platform specified/available
Background
I am trying to dockerize my LaTeX distribution using Alpine on my MacBook Pro with an M3 Max chip.
Dockerfile
FROM alpine:3.21
ENV PATH=/usr/local/texlive/bin/aarch64-linuxmusl:$PATH
ARG ...
0
votes
1
answer
55
views
Not able to upgrade Werkzeug through my Dockerfile
I'm trying to update the werkzeug (py3-werkzeug-2.2.2-r1) to 3.0.6, through my Dockerfile but couldn't and getting this error
#7 [ 3/14] RUN apk add --no-cache git=2.39.5-r0 py3-werkzeug=3.0.6-r0
#7 0....