All Questions
Tagged with alpine or alpine-linux
1,877 questions
Score of 2
1 answer
123 views
List & Label 29 PDF export fails in .NET 8 Docker container on Alpine with "Platform not supported" [closed]
I am trying to run List & Label 29 in a Docker container on AWS using .NET 8 / C#.
The application itself builds and starts successfully inside the container. The problem occurs only when I try to ...
Score of 0
0 answers
66 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 ...
Score of 0
2 answers
79 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/...
Score of 2
0 answers
93 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/...
Score of 2
1 answer
63 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 '
...
Score of 1
1 answer
170 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....
Score of 1
0 answers
318 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 ...
Score of 1
0 answers
149 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 ...
Score of 0
1 answer
381 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 ...
Score of 0
0 answers
233 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 ...
Score of 1
1 answer
220 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 ...
Score of 0
0 answers
100 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 (!...
Score of 2
1 answer
460 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 ...
Score of -4
2 answers
647 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}...
Score of 0
1 answer
179 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 ...