alpine-linux Questions

2

I'm developping an API and deploying it on Google Cloud Run. There is a prestart python script that import pandas and numpy. When I time the imports numpy take about 2 seconds and pandas about 4 se...

3

Solved

I have a PHP application running on docker and based on php:7.3-alpine3.9 For a big form, I am posting more than 1000 inputs, and I not only I get the error Warning: Unknown: Input variables exce...
Expecting asked 8/8, 2019 at 13:40

8

Solved

I have written a Dockerfile which uses as an image an private adapted Alpine image, which contains a nginx server. Note: Alpine uses sh, not Bash. I love to have some shell aliases available, when ...
Indian asked 23/2, 2021 at 12:34

2

I installed Wkhtmltopdf on Alpine Docker with the following command: apk add --no-cache wkhtmltopdf However when I try to run wkhtmltopdf I get: /usr/bin/wkhtmltopdf "test.html" "test.pdf" Canno...
Fonz asked 3/6, 2019 at 11:4

4

Solved

Is it possible to install PHP7.4 on stock Alpine 3.12 Docker image? I have seen this repo and its dockerfile which is using bintray cert and repository path, but I was wondering if there is a more ...
Incorporating asked 10/7, 2020 at 14:48

2

Solved

I am using headless chrome based on alpine:3.7 image under docker. However, when I take a screenshot using Chrome DevTools Protocol, I found alpine cannot show languages other than English like the...
Empanel asked 2/3, 2018 at 10:50

4

Solved

I am trying to install Redis on the golang:1.10.1-alpine3.7 image. I tried RUN apk add --no-cache redis, but when I tried to run the redis-cli command, I get an exit status 127, which means the giv...
Pelagian asked 28/4, 2018 at 5:1

4

Solved

I am building an Alpine based image of a Django application with MariaDB and I can't figure out which dependency I should add to my Dockerfile so that my app could properly connect to the DB. dja...
Grayback asked 8/5, 2019 at 20:32

4

Solved

This is actually a question following from my previous one. I am trying to use docker to host a personal note-taking web service and want to backup data generated by the service (my notes). Curren...
Holohedral asked 13/1, 2018 at 6:19

8

Solved

I would like to execute netstat inside a running docker container to see open TCP sockets and their statuses. But, on some of my docker containers, netstat is not available. Is there any way to get...
Klee asked 31/10, 2016 at 20:56

3

Solved

Suppose I am at network where there is MITM SSL swaping firewall (google.com is not issued by Google, but reissued by custom CA root authority) some more details here https://security.stackexchange...
Middleman asked 23/4, 2021 at 14:22

16

I'm installing aws-cli on a docker swarm manager node running alpine (Linux 0317632a4ad9 4.9.59-moby #1 SMP Thu Mar 1 20:54:00 UTC 2018 x86_64 Linux). The aws-cli package for Alpine is currently li...
Aciculum asked 20/5, 2020 at 17:14

10

Solved

Im trying to install python pip in my alpine using Docker compose file but get the following error. ERROR: unsatisfiable constraints: py-pip (missing): required by: world[py-pip] ERROR: Service ...
Freddafreddi asked 19/6, 2017 at 14:58

16

Solved

When I pull a clean Alphine Linux Docker image, install aws-cli on it and try to authenticate myself with aws ecr get-authorization-token --region eu-central-1 I keep getting the following error: ...

10

Solved

I'm encountering a problem when building a Docker image using a Python-based Dockerfile. I'm trying to use the mysqlclient library (version 2.2.0) and Django (version 4.2.2). Here is my Dockerfile:...
Species asked 22/6, 2023 at 15:18

2

Solved

A strange issue with permissions occured when pushing to GitHub. I have a test job which runs tests with coverage and then pushes results to codecov on every push and pull request. However, this sc...
Illumine asked 25/3, 2022 at 8:11

10

Solved

Before I added bcrypt to my package.json, everything was working fine. Now, I get the error message below. This is an excerpt of my package.json: "dependencies": { "bcrypt": "3.0.6", "express"...
Hesiod asked 24/12, 2019 at 14:47

10

Solved

I'm trying to install numpy in a docker container based on Alpine 3.1. I'm using the following Dockerfile: FROM alpine:3.1 RUN apk add --update make cmake gcc g++ gfortran RUN apk add --update pyt...
Salaidh asked 29/10, 2015 at 18:28

2

Solved

SkiaSharp fails at runtime when deployed to an alpine linux container, using .NET 6.0 with the following error: System.TypeInitializationException: The type initializer for 'SkiaSharp.SKImageInfo'...
Actinomycete asked 14/10, 2022 at 0:35

6

I have a small python app inside an alpine linux container, here is the dockerfile: FROM alpine # basic flask environment RUN apk add --no-cache bash git nginx uwsgi uwsgi-python py2-pip \ &...
Charlot asked 16/9, 2018 at 14:55

1

Solved

I am trying to update my PHP project from PHP 7.4 to 8.2. I have an issue with formatting date using IntlDateFormatter class for ar_AE locale under PHP 8.2 Alpine 3.19 version. On my previous setup...
Cur asked 19/2 at 15:13

10

Solved

How do I install python3 and python3-pip on an alpine based image (without using a python image)? $ apk add --update python3.8 python3-pip ERROR: unsatisfiable constraints: python3-pip (missing)...
Affixation asked 24/6, 2020 at 12:25

5

Solved

I'm attempting to bundle my app (code, Dockerfiles and a docker-compose script) together inside a single image for easy deployment (entrypoint will just docker-compose up). My Dockerfile for this t...
Jorgan asked 15/2, 2019 at 14:34

5

We have a Java Spring Boot application that runs in a Docker container. It is based on openjdk:13-jdk-alpine. We deploy it to Linux machines, but we are also able to run it locally on Windows machi...
Kilmarnock asked 29/8, 2021 at 18:17

1

I would like to install Flutter on a Docker container running Alpine Linux. I wrote the following Dockerfile: FROM alpine RUN apk add bash curl file git zip RUN git clone https://github.com/flutte...
Portie asked 2/1, 2021 at 16:39

© 2022 - 2024 — McMap. All rights reserved.