alpine-linux Questions

1

I am trying to run a deploy with docker and I successfully runned with this command: docker build -t romenigld/blog-prod . but when I tried to do with this command: docker run --env-file .env -p 80...

5

I am trying to install pymupdf package on apline image but getting below error fitz/fitz_wrap.c:2739:10: fatal error: ft2build.h: No such file or directory 2739 | #include <ft2build.h> | ^~...
Shahjahanpur asked 21/12, 2020 at 6:34

3

In an alpine:edge container I installed go via RUN apk add --no-cache musl-dev go I try to run go get github.com/golang/protobuf/protoc-gen-go then. This results in the error message: go: find...
Hobbs asked 1/5, 2019 at 6:0

3

Solved

I wanted to reduce my docker image and switched to an alpine base image instead. This lead to problems bash not finding apt. Turns out, I have to use apk instead. However, it does not seem to find ...
Jokester asked 28/5, 2019 at 7:25

1

I've searched and can't seem to find the answer to this error. "Error: Can't drop privilege as nonroot user" when I create a new VM. The container keeps restarting. It works just fine on ...
Lamelli asked 1/5, 2021 at 9:32

5

Solved

I'm trying to install uwsgi using pip install uwsgi in my Alpine docker image but unfortunately it keeps failing weird no real error message to me: Complete output from command /usr/bin/python -c ...
Kata asked 25/3, 2016 at 9:24

3

Solved

When running an alpine docker container for the first time and attempting to install openssh, I get the following error: ole@T:~$ docker run -it --rm alpine /bin/ash / # apk add openssh WARNING: Ig...
Gosse asked 29/2, 2016 at 0:5

2

Has anyone been able to install wkhtmltopdf on python:3.6.0-alpine. I have tried all the solutions present on the internet. I need to use pdfkit which internally uses wkhtmltopython to convert htm...
Incision asked 11/6, 2019 at 13:49

1

Solved

I am building a Docker image with python 3.7.10 (Linux Alpine v3.13) but when building the image with docker build . the package hdf5 will fail during the installation. This is my Dockerfile: FROM ...
Nertie asked 19/3, 2021 at 8:53

5

Solved

I'm trying to install node canvas (https://github.com/Automattic/node-canvas) on Alpine within docker. These are (parts of) my Dockerfile: # Use node/alpine image for final build FROM keymetrics/...
Civilized asked 18/7, 2019 at 6:23

2

Solved

Context: OS: Windows 10 Pro; Docker ver: 18.09.0 (build 4d60db4); Behind corporate proxy, using CNTLM to solve this issue. (currently pulling / running image works fine) Problem: I was trying to bu...
Oocyte asked 28/11, 2018 at 1:46

1

I am working on a docker image I created using firesh/nginx-lua (The Linux distribution is Alpine): FROM firesh/nginx-lua COPY ./nginx.conf /etc/nginx COPY ./handler.lua /etc/nginx/ COPY ./env_var...
Militate asked 7/3, 2021 at 16:23

3

I need run npm rebuild node-sass --force inside my docker container But i got an error (even after i install python already) Error: Can't find Python executable "python", you can set the PYTHON e...
Engrail asked 15/6, 2019 at 14:31

1

Solved

when I want to build my Alpine Docker I get an error when I define specific python version. My Dockerfile: FROM python:3-alpine RUN apk --no-cache add build-base openldap-dev python2-dev 'python3=...
Experientialism asked 16/2, 2021 at 8:54

2

Solved

I am trying to install 32-bit packages on official alpine docker images but whenever I do apk add libcurl for example it install 64-bit version of libcurl whereas I want to install 32-bit package. ...
Mindful asked 29/1, 2018 at 10:16

2

Solved

The following code works just fine on my desktop: BufferedImage image = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB); Graphics g = image.getGraphics(); g.setFont(new Font("SansS...
Enunciation asked 16/5, 2016 at 10:4

1

After setting up SSL for Nginx and making a request, I receive a garbled response with the cryptic message client sent invalid method while reading client request line. I generated the certificate ...
Twyla asked 5/2, 2021 at 15:4

2

Solved

I am trying to create my own Nginx image, using apline:3.12.0 image, after fixing a lot of errors, thanks to the internet, I managed to do it and everything works fine, but the problem is when I ru...
Knowledgeable asked 8/1, 2021 at 11:13

2

Solved

What is .build-deps in the following command? I can't find an explanation in the Alpine docs. Is this a file that is predefined? Is see this referenced in many Dockerfiles. RUN apk add --no-cache ...
Capacity asked 14/9, 2017 at 13:55

3

Solved

I'm trying to install postgis into a postgres container. Dockerfile: FROM postgres:9.6.4-alpine RUN apk update \ && apk add -u postgresql-9.6-postgis-2.4 postgresql-9.6-postgis-2.4-scrip...
Neonatal asked 20/2, 2018 at 19:2

4

I'm using lwieske/java-8:server-jre-8u121-slim with Alpine Linux I'd like to set hostname from a text file to be seen globally (for all shells) / # env HOSTNAME=2fa4a43a975c / # cat /etc/afile s...
Bohrer asked 2/8, 2017 at 13:30

1

Solved

I want to setup a very minimalistic alpine linux docker container with the following capabilities: It runs an ssh server It copies over a SSH public key of my choice to which I can then authentica...
Fanelli asked 17/12, 2020 at 11:49

3

I have a container with the python:3.6-alpine kernel. I have a problem installing the pyzmq via pip on this: Dockerfile: FROM python:3.6-alpine RUN mkdir /code RUN apk add vim WORKDIR / ADD . /cod...
Adieu asked 19/8, 2018 at 6:38

5

Solved

I appear to be missing something when attempting to install Firefox from the Alpine Edge Repository Firefox (Version 61.0.1-r0) Repo as distinct from installing Firefox-ESR (Version 52.8.1...
Georgettegeorgi asked 12/8, 2018 at 6:43

2

While trying to run E2E tests using Alpine Linux we have the following mysterious error: E/launcher - spawn (...)/selenium/chromedriver_2.40 ENOENT How to reproduce docker run -it --name my-alp...

© 2022 - 2024 — McMap. All rights reserved.