Sylvain Desbureaux | 1bc5690 | 2019-01-30 14:36:14 +0100 | [diff] [blame] | 1 | FROM alpine:3.8 |
| 2 | |
| 3 | LABEL maintainer="SDN-C Team (sdnc@lists.openecomp.org)" |
| 4 | ARG PIP_TAG=18.0 |
| 5 | |
| 6 | WORKDIR /opt/ |
| 7 | |
| 8 | COPY ansible-server/requirements.txt ansible-server/requirements.txt |
| 9 | |
Taka Cho | 9bec848 | 2019-02-18 14:31:27 -0500 | [diff] [blame] | 10 | RUN apk add --no-cache curl \ |
Taka Cho | ef127a5 | 2019-11-01 15:52:15 -0400 | [diff] [blame] | 11 | iputils \ |
Taka Cho | 9bec848 | 2019-02-18 14:31:27 -0500 | [diff] [blame] | 12 | bash \ |
Sylvain Desbureaux | 78327d7 | 2019-03-05 17:40:10 +0100 | [diff] [blame] | 13 | openssh-client \ |
Taka Cho | ef127a5 | 2019-11-01 15:52:15 -0400 | [diff] [blame] | 14 | python3 &&\ |
Sylvain Desbureaux | 1bc5690 | 2019-01-30 14:36:14 +0100 | [diff] [blame] | 15 | apk add --no-cache --virtual .build-deps build-base \ |
| 16 | libffi-dev \ |
| 17 | openssl-dev \ |
Taka Cho | ef127a5 | 2019-11-01 15:52:15 -0400 | [diff] [blame] | 18 | python3-dev &&\ |
| 19 | pip3 install --no-cache-dir --upgrade pip==$PIP_TAG && \ |
| 20 | pip3 install --no-cache-dir -r ansible-server/requirements.txt &&\ |
Sylvain Desbureaux | 1bc5690 | 2019-01-30 14:36:14 +0100 | [diff] [blame] | 21 | apk del .build-deps |
| 22 | |
Timoney, Dan (dt5972) | 38e175f | 2019-02-21 14:57:34 -0500 | [diff] [blame] | 23 | RUN addgroup -S ansible && adduser -S ansible -G ansible |
Taka Cho | ef127a5 | 2019-11-01 15:52:15 -0400 | [diff] [blame] | 24 | |
Timoney, Dan (dt5972) | 38e175f | 2019-02-21 14:57:34 -0500 | [diff] [blame] | 25 | COPY --chown=ansible:ansible ansible-server ansible-server |
| 26 | COPY --chown=ansible:ansible configuration/ansible.cfg /etc/ansible/ansible.cfg |
| 27 | |
Sylvain Desbureaux | 1bc5690 | 2019-01-30 14:36:14 +0100 | [diff] [blame] | 28 | WORKDIR /opt/ansible-server |
| 29 | |
Timoney, Dan (dt5972) | 15f406b | 2019-02-06 17:14:45 -0500 | [diff] [blame] | 30 | RUN mkdir /opt/onap ; ln -s /opt/ansible-server /opt/onap/ccsdk |
Timoney, Dan (dt5972) | 38e175f | 2019-02-21 14:57:34 -0500 | [diff] [blame] | 31 | RUN echo > /var/log/ansible-server.log |
Taka Cho | c6e85bc | 2019-04-22 11:54:32 -0400 | [diff] [blame] | 32 | RUN chown -R ansible:ansible /var/log |
Sylvain Desbureaux | 78327d7 | 2019-03-05 17:40:10 +0100 | [diff] [blame] | 33 | RUN chown ansible:ansible /opt/ansible-server |
Timoney, Dan (dt5972) | 38e175f | 2019-02-21 14:57:34 -0500 | [diff] [blame] | 34 | |
| 35 | USER ansible:ansible |
| 36 | |
Timoney, Dan (dt5972) | 15f406b | 2019-02-06 17:14:45 -0500 | [diff] [blame] | 37 | |
Sylvain Desbureaux | 1bc5690 | 2019-01-30 14:36:14 +0100 | [diff] [blame] | 38 | EXPOSE 8000 |
| 39 | |
Taka Cho | 9bec848 | 2019-02-18 14:31:27 -0500 | [diff] [blame] | 40 | ##ENTRYPOINT ["python2", "RestServer.py"] |