aboutsummaryrefslogtreecommitdiffstats
path: root/packages/docker/src/main/docker/docker-files/Dockerfile.so-base-image
blob: bf4a2fe01f63b0b54f58b86d025011e9968c29bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
FROM docker.io/onap/integration-java11:7.0.0

ARG http_proxy
ARG https_proxy
ENV HTTP_PROXY=$http_proxy
ENV HTTPS_PROXY=$https_proxy
ENV http_proxy=$HTTP_PROXY
ENV https_proxy=$HTTPS_PROXY

# Install commonly needed tools
RUN apk --no-cache add curl netcat-openbsd nss apache2-utils

# Create 'so' user
RUN addgroup -g 1000 so && adduser -S -u 1000 -G so -s /bin/sh so