How to install CUPS software in httpd server
up vote
0
down vote
favorite
I have a Docker image of a server whose base image is httpd:2.4, whose base image is Alpine Linux. I need to install CUPS software for configuring printers in the server. How do I proceed with installation?
I have included the apk update
and apk upgrade
commands in Dockerfile which updates Alpine Linux and trying to install CUPS using apk add cups
which is mentioned in https://wiki.alpinelinux.org/wiki/Printer_Setup
But it is giving me the below error:
OCI runtime create failed: container_linux.go:348: starting container process caused "exec: "apk": executable file not found in $PATH": unknown
Can someone please tell me where am I going wrong in this and point me in right direction. Why is it not able to find the apk
command which is from the base image - Alpine Linux?
Here's the Dockerfile:
FROM httpd:2.4
RUN ["apk", "update"]
RUN ["apk", "upgrade"]
RUN ["apk", "add", "cups"]
linux docker cups httpd alpine-linux
add a comment |
up vote
0
down vote
favorite
I have a Docker image of a server whose base image is httpd:2.4, whose base image is Alpine Linux. I need to install CUPS software for configuring printers in the server. How do I proceed with installation?
I have included the apk update
and apk upgrade
commands in Dockerfile which updates Alpine Linux and trying to install CUPS using apk add cups
which is mentioned in https://wiki.alpinelinux.org/wiki/Printer_Setup
But it is giving me the below error:
OCI runtime create failed: container_linux.go:348: starting container process caused "exec: "apk": executable file not found in $PATH": unknown
Can someone please tell me where am I going wrong in this and point me in right direction. Why is it not able to find the apk
command which is from the base image - Alpine Linux?
Here's the Dockerfile:
FROM httpd:2.4
RUN ["apk", "update"]
RUN ["apk", "upgrade"]
RUN ["apk", "add", "cups"]
linux docker cups httpd alpine-linux
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I have a Docker image of a server whose base image is httpd:2.4, whose base image is Alpine Linux. I need to install CUPS software for configuring printers in the server. How do I proceed with installation?
I have included the apk update
and apk upgrade
commands in Dockerfile which updates Alpine Linux and trying to install CUPS using apk add cups
which is mentioned in https://wiki.alpinelinux.org/wiki/Printer_Setup
But it is giving me the below error:
OCI runtime create failed: container_linux.go:348: starting container process caused "exec: "apk": executable file not found in $PATH": unknown
Can someone please tell me where am I going wrong in this and point me in right direction. Why is it not able to find the apk
command which is from the base image - Alpine Linux?
Here's the Dockerfile:
FROM httpd:2.4
RUN ["apk", "update"]
RUN ["apk", "upgrade"]
RUN ["apk", "add", "cups"]
linux docker cups httpd alpine-linux
I have a Docker image of a server whose base image is httpd:2.4, whose base image is Alpine Linux. I need to install CUPS software for configuring printers in the server. How do I proceed with installation?
I have included the apk update
and apk upgrade
commands in Dockerfile which updates Alpine Linux and trying to install CUPS using apk add cups
which is mentioned in https://wiki.alpinelinux.org/wiki/Printer_Setup
But it is giving me the below error:
OCI runtime create failed: container_linux.go:348: starting container process caused "exec: "apk": executable file not found in $PATH": unknown
Can someone please tell me where am I going wrong in this and point me in right direction. Why is it not able to find the apk
command which is from the base image - Alpine Linux?
Here's the Dockerfile:
FROM httpd:2.4
RUN ["apk", "update"]
RUN ["apk", "upgrade"]
RUN ["apk", "add", "cups"]
linux docker cups httpd alpine-linux
linux docker cups httpd alpine-linux
edited Nov 21 at 13:59
Aulis Ronkainen
6131514
6131514
asked Nov 21 at 13:43
Tywin Lannister
12
12
add a comment |
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1377288%2fhow-to-install-cups-software-in-httpd-server%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown