You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwhisk.apache.org by cs...@apache.org on 2018/12/01 04:25:46 UTC

[incubator-openwhisk-apigateway] branch master updated: Add package tzdata to the image (#319)

This is an automated email from the ASF dual-hosted git repository.

csantanapr pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-openwhisk-apigateway.git


The following commit(s) were added to refs/heads/master by this push:
     new 7dc641c  Add package tzdata to the image (#319)
7dc641c is described below

commit 7dc641c148a81a4a392e671d33139b86d5ef879e
Author: jiangpch <ji...@navercorp.com>
AuthorDate: Sat Dec 1 12:25:42 2018 +0800

    Add package tzdata to the image (#319)
    
    Then users can set the timezone for the container
---
 Dockerfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Dockerfile b/Dockerfile
index 15e5cae..587a61d 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -25,7 +25,7 @@ FROM alpine:latest
 
 # install dependencies
 RUN apk --update add \
-    gcc tar libtool zlib jemalloc jemalloc-dev perl \
+    gcc tar libtool zlib jemalloc jemalloc-dev perl tzdata \
     ca-certificates wget make musl-dev openssl-dev openssl pcre-dev g++ zlib-dev curl python \
     perl-test-longstring perl-list-moreutils perl-http-message geoip-dev dumb-init jq \
     && update-ca-certificates \