Commit f0d78180 authored by Julien Bordellier's avatar Julien Bordellier

Change tiller's Dockerfile to use USER nobody + upgrades to alpine:3.7

parent d502f7c8
......@@ -12,15 +12,15 @@
# See the License for the specific language governing permissions and
# limitations under the License.
FROM alpine:3.3
FROM alpine:3.7
RUN apk update && apk add ca-certificates && rm -rf /var/cache/apk/*
ENV HOME /tmp
COPY tiller /tiller
COPY tiller /bin/tiller
EXPOSE 44134
CMD ["/tiller"]
USER nobody
ENTRYPOINT ["/bin/tiller"]
......@@ -12,15 +12,15 @@
# See the License for the specific language governing permissions and
# limitations under the License.
FROM alpine:3.3
FROM alpine:3.7
RUN apk update && apk add ca-certificates && rm -rf /var/cache/apk/*
ENV HOME /tmp
COPY tiller /tiller
COPY tiller /bin/tiller
EXPOSE 44134
CMD ["/tiller", "--experimental-release"]
USER nobody
ENTRYPOINT ["/bin/tiller", "--experimental-release"]
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment