summaryrefslogtreecommitdiffstats
path: root/sdc-os-chef/sdc-kibana
diff options
context:
space:
mode:
authorVictor Morales <victor.morales@intel.com>2017-06-14 14:45:20 -0500
committerVictor Morales <victor.morales@intel.com>2017-06-14 14:45:20 -0500
commit648b32ece75395b0dd71a7eff9c1270b45f71c52 (patch)
tree6e08104a814fe59491afae72d80a52ba35437478 /sdc-os-chef/sdc-kibana
parent89786d31f266a205857cae0177904c249ac6a512 (diff)
Add proxy support
It's not possible to build the Docker images behind a corporate proxy. This change adds support to HTTP and HTTPS protocols for creation of images. Change-Id: Iabe675d86e2879270dda069179b7b854da0a93bd Signed-off-by: Victor Morales <victor.morales@intel.com>
Diffstat (limited to 'sdc-os-chef/sdc-kibana')
-rw-r--r--sdc-os-chef/sdc-kibana/Dockerfile9
1 files changed, 9 insertions, 0 deletions
diff --git a/sdc-os-chef/sdc-kibana/Dockerfile b/sdc-os-chef/sdc-kibana/Dockerfile
index be5446e2e9..a42225a91c 100644
--- a/sdc-os-chef/sdc-kibana/Dockerfile
+++ b/sdc-os-chef/sdc-kibana/Dockerfile
@@ -1,5 +1,14 @@
FROM kibana:4.3.3
+ARG HTTP_PROXY
+ARG HTTPS_PROXY
+
+ENV HTTP_PROXY ${HTTP_PROXY}
+ENV HTTPS_PROXY ${HTTPS_PROXY}
+
+RUN if [ ! -z ${HTTP_PROXY} ]; then echo "Acquire::http::proxy \"${HTTP_PROXY}\";" >> /etc/apt/apt.conf; fi && \
+ if [ ! -z ${HTTPS_PROXY} ]; then echo "Acquire::https::proxy \"${HTTPS_PROXY}\";" >> /etc/apt/apt.conf; fi
+
RUN apt-get -y update
RUN apt-get -y install curl
RUN apt-get -y install vim
9 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328