alpine-linux Questions
2
Solved
I try to add the plpython3 extension to my timescaledb/postgres (based on linux alpine) image:
FROM timescale/timescaledb:0.9.0-pg10
RUN set -ex \
&& apk add --no-cache --virtual .plpyth...
Correa asked 20/3, 2018 at 8:26
5
I am writing a Lambda function to convert an excel file to PDF using unoconv with libreoffice, for this I am using alpine base image. The Dockerfile is as follows.
# Define global args
ARG FUNCTION...
Hypsometer asked 4/7, 2021 at 18:23
9
Solved
I am trying to install Go inside an Alpine Docker image. For that I downloaded tar file from here inside my alpine docker image, untar it using following command:
tar -C /usr/local -xzf go1.10.3...
Stylist asked 28/8, 2018 at 11:6
6
I just want to send simple email for testing purposes, but when executing sendmail inside the container, I get sendmail: can't connect to remote host (127.0.0.1): Connection refused. What do I need...
Empedocles asked 4/8, 2017 at 2:48
3
Solved
See this github issue: https://github.com/grpc/grpc/issues/18338
See this example repo: https://github.com/slolife/alpine-protoc
If I include the Grpc.Tools 1.19.0 nuget package in a project, whi...
Sible asked 12/3, 2019 at 18:16
2
Solved
I get an error when I try to build an alpine based docker image that includes the sklearn package.
I've tried a few variations of pip installation, different package combinations, and outdated vers...
Ferrari asked 14/6, 2019 at 1:39
6
I'd like to have a lean Docker image for nginx with the Lua module enabled. How can I create this based on Alpine linux?
Divergency asked 18/11, 2017 at 12:41
12
Solved
Hi I am trying build a docker and Docker file looks like this.
FROM alpine
LABEL description "Nginx + uWSGI + Flask based on Alpine Linux and managed by Supervisord"
# Copy python requirements f...
Michealmicheil asked 10/12, 2018 at 16:55
2
Solved
I am trying to install the azure-cli in the dind:latest image based on alpine.
For context, I want to use it to connect to AKS and deploy an app to Kubernetes via Gitlab.
In my gitlab-ci.yml file...
Flagellant asked 7/12, 2017 at 16:15
4
I'm facing an unexpected error when running docker build, and I say unexpected because I haven't changed my Dockerfile for a while, and it had worked fine for the last time two weeks ago, but now I...
Selfwill asked 28/8, 2018 at 13:46
6
Solved
any idea how can i install the php Ldap extension in dockerfile
FROM php:7.2-fpm-alpine
i tried the following
RUN docker-php-ext-configure ldap --prefix=/usr/local/php --with-ldap=/usr/lib/i386-l...
Luigiluigino asked 16/7, 2020 at 8:35
4
Solved
I am running Docker through Docker Desktop on a MacOS, and I am having a lot of trouble installing packages in my container because it is being unable to verify any ssl certificates.
When I run apk...
Carlottacarlovingian asked 8/4, 2022 at 14:3
7
Solved
Given a binary, compiled with Go using GOOS=linux and GOARCH=amd64, deployed to a docker container based on alpine:3.3, the binary will not run if the docker engine host is Ubuntu (15.10):
sh: /bi...
Lapham asked 29/3, 2016 at 8:34
3
Running on Alpine Linux 3.10, I've installed the distribution's git package using apk.
In an existing checkout directory, when I try to launch git add's interactive mode:
$ git add -i
I get the...
Odie asked 23/8, 2019 at 20:41
12
Solved
I've noticed that installing Pandas and Numpy (it's dependency) in a Docker container using the base OS Alpine vs. CentOS or Debian takes much longer. I created a little test below to demonstrate t...
Clingstone asked 28/2, 2018 at 20:10
5
I am using alpine linux as a base image, and I need to install an oracle client native library. I believe you can download from here:
https://www.oracle.com/technetwork/topics/linuxx86-64soft-0922...
Pilfer asked 26/4, 2019 at 0:29
6
Solved
Like for example if I use command docker run -it alpine /bin/sh
it starts a terminal after which I can install packages and all. Now when I use exit command it goes back to the terminal. (main one)...
Spock asked 11/8, 2017 at 15:28
4
Lately, we've faced some DNS issues with micro-services based on Alpine image (node:12.18.1-alpine) on EKS when trying to resolve "big" DNS queries (When the answer is larger than 512M).
...
Linwoodlinz asked 7/12, 2020 at 11:35
13
Solved
I'm trying to run Python's Scrapy in a Docker container based on python:alpine. It was working before, but now I'd like to use Scrapy's Image Pipeline which requires me to install Pillow.
As a sim...
Direful asked 18/5, 2017 at 9:31
4
Solved
So recently (5th September) the Alpine Linux package repo was updated to postgresql-client 12.4
I'm referencing version 12.3 in my Dockerfile (apk add postgresql-client=~12.3). Is it not possible t...
Isostasy asked 17/9, 2020 at 13:55
5
Context
I'm trying to schedule some ingestion jobs in an Alpine container. It took me a while to understand why my cron jobs did not start: crond doesn't seems to be running
rc-service -l | grep cr...
Freyah asked 5/7, 2019 at 10:58
2
Solved
So:
The official Go build container is based on Alpine.
Alpine uses musl as libc instead of glibc.
I need to build a Go executable in a container that can be run on Ubuntu, which uses glibc.
H...
Conciliatory asked 4/2, 2019 at 21:46
3
Solved
I cant get make to work in alpine
make update_tools works when I run it on my OSX, but when i run it in the alpine image i get the following error:
make: *** No rule to make target 'update_tools'. ...
Fictionist asked 15/3, 2019 at 21:10
3
Solved
I am new to this, but I enherited a project, where runtime build is created with dockerfile and commands like this:
# Build runtime image
FROM microsoft/dotnet:2.2-aspnetcore-runtime-alpine
RUN e...
Potful asked 16/8, 2022 at 13:24
5
Dockerfile
FROM python:3.6.5-alpine3.7
WORKDIR /app
ADD . /app
RUN pip install --no-cache-dir -r requirements.txt
EXPOSE 10021
CMD ["python", "manage.py", "runserver", "0.0.0.0:10021"]
Requ...
Cathee asked 4/9, 2018 at 4:44
© 2022 - 2024 — McMap. All rights reserved.