alpine-linux Questions
3
I read some Docker and Node.js Best Practices articles, e.g. https://github.com/nodejs/docker-node/blob/main/docs/BestPractices.md or 10 best practices to containerize Node.js web applications with...
Subassembly asked 22/6, 2022 at 4:36
6
Solved
I'm trying to build a Flask app using Postgres with Docker. I'd like to connect to an AWS RDS instance of Postgres, but use Docker for my Flask app. However, when trying to set up psycopg2 it runs ...
Victoriavictorian asked 12/10, 2017 at 14:17
1
I've been reading the man pages for apk add, but I don't fully understand how to use the --force-broken-world flag.
I was trying to install Python 2.7.6 into an Alpine image, but I got the followi...
Allix asked 5/2, 2018 at 17:52
5
Solved
I cannot seem to get my node:alpine Docker image for a react/next.js to build.
I can get it to build fine locally, but I never see the traffic in my API logs when the Docker build reaches out to th...
Ikon asked 30/4, 2021 at 0:52
7
Solved
I'm running alpine-linux on a Raspberry Pi 2. I'm trying to install Pillow via this command:
pip install pillow
This is the output from the command:
Installing collected packages: pillow
Runnin...
Carolus asked 3/6, 2015 at 15:45
3
I'm trying to build an Android application inside a docker container on a CI server and aapt2 is failing to merge the resources.
Base Docker Image is openjdk:8-alpine
The packages being installed...
Otocyst asked 3/6, 2017 at 13:53
8
Solved
I created a docker image from openjdk:8-jdk-alpine and I want to use bash, rather than sh as my shell, however when I try to execute simple commands I get the following errors:
RUN bash
/bin/sh: ba...
Italicize asked 3/12, 2016 at 5:14
1
Solved
I will deploy my dockerized Java application to AWS so I would like to use Amazon Corretto. I also want to keep the size of the Docker image small so I want to use a JRE-only image based on Alpine....
Merrifield asked 23/10, 2023 at 8:27
8
Solved
I'm attempting to Dockerize a Vue.js application. I'm using the node:10.15-alpine Docker image as a base. The image build fails with the following error:
gyp ERR! configure error
gyp ERR! stack Er...
Claraclarabella asked 29/1, 2019 at 19:45
5
Solved
I want to build rust 1.59 project with musl in macOS Monterey 12.3.1 with M1 chip, then I run this command:
rustup target add x86_64-unknown-linux-musl
cargo build --release --target=x86_64-unknown...
Cleareyed asked 1/6, 2022 at 11:31
4
Solved
I'm using alpine (or an image that is based on Alpine) as the base image in my Dockerfile. Which instructions do I need to add to create a user?
Eventually I'll use this user to run the applicati...
Lewert asked 21/4, 2018 at 11:4
8
Solved
I am currently running into a problem trying to set up nginx:alpine in Openshift.
My build runs just fine but I am not able to deploy with permission being denied with the following error
2019/01/...
Cyrille asked 25/1, 2019 at 6:46
2
Solved
I'm trying to dockerize pg-vector and I found this Dockerfile from the official repository.
https://github.com/pgvector/pgvector/blob/master/Dockerfile#L2C1-L3C1
The Dockerfile currently uses postg...
Afar asked 28/6, 2023 at 8:9
7
Is there a best practice on setting up glibc on docker alpine linux base image with correct paths so any spawned process can correctly reference the location of the installed libc libraries?
Belanger asked 14/6, 2016 at 17:46
3
I have a dependency in my package.json which itself has the following dependency:
"node-rdkafka": "^2.5.0",
Using nvm on my local machine and setting my node version to 8.9.1, and my npm version...
Rurik asked 13/9, 2019 at 13:45
5
Solved
I'm trying to install node official binary on alpine docker.
wget https://nodejs.org/dist/v14.4.0/node-v14.4.0-linux-x64.tar.xz
tar -xvf node-v14.4.0-linux-x64.tar.xz
And once I try to run it:
~/no...
Koweit asked 7/10, 2020 at 12:6
4
Solved
My PHP container runs puppeteer to generate PDF. By generating a PDF document, it also creates two core dump files inside my container. I am not sure where they actually come from.
The host/server...
Caboose asked 5/11, 2019 at 3:44
7
I am trying to install OCI8 extension on my Alpine Linux Docker environment. Although there are several places saying it won't work, there are some which say it actually does. I have a 3.4 version ...
Rabbinate asked 12/11, 2018 at 14:13
3
Solved
The title pretty much says it all (but maybe there's something more sinister in play.) I'm aware of /etc/profile.d/*.sh scripts that run when you login but that doesn't seem to work as expected whe...
Maine asked 4/10, 2022 at 22:50
4
Solved
I need to use a standard Alpine docker image and install a specific version of Node and NPM. Heres is my attempt so far:
FROM alpine:3.17.2
RUN apk update
RUN apk upgrade
RUN apk add bash git helm...
Sickert asked 26/4, 2023 at 11:3
2
Solved
Is there any way to disable SSL verification at installing some packages?
I found how to add my certificate in trusted certificates, but I'd rather do disable this checking.
I need it to avoid foll...
Roseanneroseate asked 22/12, 2021 at 8:7
5
Solved
I can produce working image for my python app with following simple Dockerfile:
FROM python:3.7
WORKDIR /myapp
COPY Pipfile* ./
RUN pip install pipenv
RUN pipenv install --system --deploy
COPY src...
Hampshire asked 9/10, 2019 at 8:31
7
Solved
I've got a Go binary I'm trying to run on the Alpine Docker image.
This works fine for the Docker Go binary.
docker run -it alpine:3.3 sh
apk add --no-cache curl
DOCKER_BUCKET=get.docker.com
DOC...
Auspice asked 11/1, 2016 at 19:44
6
Solved
I'm using wordpress:php7.1-fpm-alpine which is based on php:7.1-fpm-alpine (https://github.com/docker-library/wordpress/blob/master/php7.1/fpm-alpine/Dockerfile).
I've tried RUN pecl install xdebu...
Elodia asked 19/10, 2017 at 8:19
8
So I have used the default docker for testcafe which on docker hub is testcafe/testcafe and I have to run a few testcafe scripts.
However, I need the screenshot that fires on error, to be uploade...
Pickaxe asked 6/6, 2018 at 19:2
© 2022 - 2024 — McMap. All rights reserved.