Pierre-Louis Gottfrois
Pierre-Louis Gottfrois

Reputation: 17631

Unsatisfiable constraints when installing packages on docker alpine

I'm build a docker image based on ruby:2.3-alpine. I need to install couple of packages for my rails application to run normally. Unfortunately the following packages does not exists on alpine repositories.

What's the way to install them?

$ uname -a
Linux 50642453afd5 4.1.17-boot2docker #1 SMP Thu Feb 11 08:12:31 UTC 2016 x86_64 Linux
$ apk add iceweasel
ERROR: unsatisfiable constraints:
  iceweasel (missing):
    required by: world[iceweasel]

Packages to install:

Upvotes: 6

Views: 6161

Answers (1)

johntellsall
johntellsall

Reputation: 15160

As of June, 2016 "firefox-esr" replaces Iceweasel.

Here's how to install it in an Alpine Docker container, and to run it to verify it's installed correctly:

FROM ruby:2.3-alpine
RUN apk add --no-cache firefox-esr
RUN firefox --version

You'll probably also need a virtual display (framebuffer) like xvfb. See this for more info => https://github.com/rickypc/docker-python-firefox-xvfb/blob/master/Dockerfile

Upvotes: 4

Related Questions