how to transfer ubuntu dockerfile instructions to alpine
#1
Sun, 2016-03-13 17:40
kklepper
-
- Offline
- 1 year 10 months ago
- 2016-03-13
Just from looking at it, I managed to transfer ubuntu dockerfile instructions to alpine in some cases, but the following stops me:
#FROM phusion/baseimage FROM gliderlabs/alpine ... RUN apt-get update \ && apt-get -y install software-properties-common \ && apt-get update \ && add-apt-repository -y ppa:builds/sphinxsearch-beta \ && apt-get update \ && apt-get -y install sphinxsearch \ ...
Where can I find hints towards my goal?
I see that the syntax in alpine is much simpler, so probably
apk add sphinx
should suffice.There is a package sphinx, maintained by Francesco Colista, but I get
What am I doing wrong?
Adding
does not help:
Looking at http://dl-2.alpinelinux.org/alpine/edge/community/x86_64/ I see that there is no sphinx indeed. What now?
I filed a bug report