blob: 314a137cde72e868c0db99d907fefddbf4ad9d2c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
FROM nexus3.onap.org:10001/onap/integration-python:8.0.0
USER root
# Needed for pycurl
ENV PYCURL_SSL_LIBRARY=openssl
# Install packages only needed for building
RUN apk update && \
apk add binutils jq libpng && \
apk add --no-cache \
libcurl \
jq \
bash \
ruby=2.7.2-r1 && \
apk add --no-cache --virtual .build-dependencies \
libressl-dev \
ruby-dev \
libffi-dev \
libxml2-dev \
build-base \
curl-dev && \
# needed libcurl to install correctly
pip install --no-cache-dir 'pycurl==7.43.0.1' && \
set -ex && \
gem install \
chef:13.8.5 \
berkshelf:6.3.1 \
io-console:0.4.6 \
etc webrick \
--no-document && \
apk del .build-dependencies
# user/group are the same as in integration/docker/onap-python base image
ENV user=onap group=onap
USER $user
|