The first page you linked explains why the Alpine build has been removed:"The Alpine Linux build previously available on this page was removed as of the first JDK 17 release candidate. It is not production-ready because it has not been tested thoroughly enough to be considered a GA build. Please use the early-access JDK 18 Alpine Linux build ...
Share, comment, bookmark or report
4. Python has its own package system, which is managed by pip, as opposed to apk and apt which manage the Linux system binaries and programs. pip effect is limited to scope of Python programs. Think of it this way - if things break in pip, Python may break, but if things go wrong in apk or apt, your entire Linux system may break.
Share, comment, bookmark or report
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...
Share, comment, bookmark or report
I have a directory containing only two files, Dockerfile and sayhello.sh: . ├── Dockerfile └── sayhello.sh The Dockerfile reads FROM alpine COPY sayhello.sh sayhello.sh CMD ["sayhello.sh"...
Share, comment, bookmark or report
You will need to add the following commands to get bash: RUN apk update && apk add bash. If you're using Alpine 3.3+ then you can just do: RUN apk add --no-cache bash. To keep the docker image size small. (Thanks to comment from @sprkysnrky) If you just want to connect to the container and don't need bash, you can use: docker run --rm -i -t ...
Share, comment, bookmark or report
498. Alpine uses the command adduser and addgroup for creating users and groups (rather than useradd and usergroup). FROM alpine:latest. # Create a group and user. RUN addgroup -S appgroup && adduser -S appuser -G appgroup. # Tell docker that all future commands should run as the appuser user. USER appuser. The flags for adduser are:
Share, comment, bookmark or report
I just downloaded this official docker hub's 1.5.0-alpine image for a service (Kong API Gateway) and now I can not run apk commands to install nano, for instance. Before, I just had to enter the container . docker exec -it kong sh or. docker-compose exec kong sh and I was able to run commands like apk update or apk add nano, for instance.
Share, comment, bookmark or report
Installing the Chrome .deb file this way won't work on Alpine. While the dpkg package is available in the Alpine repository, and is useful for installing lightweight Debian packages, you won't be able to use it for installing complex Debian packages, since it'll be impossible to satisfy many Debian dependencies.
Share, comment, bookmark or report
Alpine Linux is not a Debian derivate (luckily), so it does not support Debian packages. Alpine doesn't provide a package for influxdb (yet), so you can create one or install influxdb from sources. Share
Share, comment, bookmark or report
For anyone coming here using alpine linux, or specially through WSL, just add .profile file into the root directory. apk update apk add nano cd ~ nano .profile --- alias test='I work' source ~/.profile test >>> I work
Share, comment, bookmark or report
Comments