alpine-linux Questions
6
I have a node:alpine Docker image. When I run the image as a root user, I have no problems, but when I use another user and I try to do npm install I receive a lot of errors from package extraction...
Foliage asked 5/6, 2019 at 9:31
2
Solved
I have compiled a PostgreSQL plugin, wal2json, but when try to load it in PostgreSQL, it complains:
ERROR: could not load library "/usr/local/lib/postgresql/wal2json.so": Error relocatin...
Lungan asked 14/7, 2018 at 9:47
1
Solved
I tried to install python module psutil in docker python:3.9.13-alpine3.16
But it reported the following mistake:
Building wheels for collected packages: psutil
Building wheel for psutil (pyprojec...
Extrajudicial asked 12/8, 2022 at 3:37
8
To use PostgreSql in python I need to
pip install psycopg2
However, it has dependency on libpq-dev and python-dev. I wonder how can I install the dependencies in alpine? Thanks.
Here is a Doc...
Donato asked 10/1, 2017 at 17:36
3
I am writing an Nginx configurations for Crystal-Lang based application to send all the traffic http://example.com/videos/ to http://0.0.0.0:3000 via reverse proxy.
I have written the following con...
Alms asked 12/10, 2021 at 5:43
5
Solved
I have a pipeline which deploys my container from GitLab. Last deployment was 5 days ago and went without any problems. Today I deploy it and get the following error:
$ apk add --no-cache curl pyth...
Massarelli asked 3/6, 2020 at 9:33
5
Solved
I'm trying to create a new user with UID 1340816314 inside an Alpine Linux Docker container in order to have a user with an UID matching a specific user on the host.
The problem is that I'm facing...
Sate asked 23/1, 2017 at 13:0
2
Solved
What is the difference between alpine docker image and busybox docker image ?
When I check their dockfiles, alpine is like this (for Alpine v3.12 - 3.12.7)
FROM scratch
ADD alpine-minirootfs-3.12.7...
Lordship asked 14/5, 2021 at 4:23
3
I can set locale with CentOS image with
FROM centos
ENV LANG en_US.UTF-8
ENV LC_ALL en_US.UTF-8
But It seems not work with Alpine image. How can I set locale with Alpine image?
Caviar asked 1/3, 2018 at 3:35
2
Solved
time.LoadLocation works regularly but throws an error on my docker instance! How do I fix it?
I ran
t, err := time.LoadLocation("America/New_York")
and it returns an error even though it works ...
Tuckerbag asked 6/2, 2020 at 20:45
2
I'm trying to build a Docker image with Alpine and only need to install some packages (apk add) but without internet because our dev environment allows no internet connection.
So I COPY the apk's ...
Selfassertion asked 4/12, 2018 at 20:16
1
Solved
I am running a build with Alpine linux 3.12 and build fails with the following output indicating an error building beam and ERTS with a C++ dependency.
Error relocating /opt/app/erts-12.3.2.1/bin/b...
Minhminho asked 13/6, 2022 at 21:59
1
After we migrated container to alpine_java-17 excel export feature fails with the next error:
java.lang.UnsatisfiedLinkError: no fontmanager in system library path: /usr/lib/jvm/java-17-openjdk/lib...
Aquitaine asked 13/5, 2022 at 8:42
4
My docker image based on alpine Linex can not get anything from network. So the command "apk add xxx" is valid. Now my idea is downloading the .apk file and coping it into the docker container. But...
Applicable asked 26/5, 2020 at 9:42
4
I want to use python 3.x and pip3 to install some python libraries in docker. I used following commands to do it, but they were not installed.
FROM alpine:latest
RUN apk add python3 py3-pip3 &...
Recrimination asked 16/1, 2019 at 7:22
1
Solved
I have a Dockerfile that uses ruby:2.7.1-alpine base image. I have a gem that needs libcurl, which I am having troubles installing on the Alpine image. I saw a solution on a GitHub issue associate ...
Stringy asked 17/5, 2022 at 2:57
2
Solved
Hi I don't know how can I run a cron job inside this container.
I've found this: How to run a cron job inside a docker container
But that overrides the CMD, I don't know hot to keep php-fpm worki...
Conchita asked 28/12, 2018 at 14:18
2
I am trying to run chrome using Python and selenium in a Docker container running alpine. It was running fine until one day when it started throwing the following error when I instantiated chrome.
...
Quentin asked 4/1, 2022 at 8:0
2
Solved
I've got a docker image running 8.0 and want to upgrade to 8.1. I have updated the image to run with PHP 8.1 and want to update the dependencies in it.
The new image derives from php:8.1.1-fpm-alpi...
Tramel asked 21/12, 2021 at 16:59
0
I am using Docker image php:8.0-fpm-alpine3.14 which I have a Sylius project and I would like use wkhtmltopdf, so I added these lines in Dockerfile:
RUN apk --update --no-cache add \
wkhtmltopdf \...
Alisa asked 23/3, 2022 at 14:18
4
Solved
I am a little bit new to Docker and deployment cycle.
I have Django application that we would like to deploy with uWSGI to docker container. Actually the deploy worked perfectly for a few weeks, b...
Globule asked 31/5, 2018 at 7:41
2
Solved
I'm having a problem while using an amazoncorretto-alpine image on which I run a Spring boot application.
To startup the container I use a specific bash script which (along with other stuff) attemp...
Intermigration asked 21/3, 2022 at 12:2
4
I can’t get man to work in an Alpine Linux Docker container.
Pull Alpine Linux and start a container.
docker pull alpine:latest
docker run -t -i alpine /bin/ash
Update repository indexes from a...
Triplicity asked 20/8, 2016 at 14:30
4
Solved
How to install fonts for all languages? This is what I do, but no Japanese fonts in Chrome.
From this image: https://github.com/Zenika/alpine-chrome/blob/master/Dockerfile
FROM zenika/alpine-chro...
Gluey asked 8/7, 2019 at 15:1
1
I'm following the guide at https://docs.docker.com/language/golang/build-images/ to learn the best way to do a multistage Docker build for a Go application. I cloned the repo:
git clone https...
Mikes asked 25/2, 2022 at 7:6
© 2022 - 2024 — McMap. All rights reserved.