Merge pull request #5630 from tao12345666333/ref-rootfs

ref(rootfs): remove useless action.
pull/5702/head
Matthew Fisher 7 years ago committed by GitHub
commit f70cba9b51
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -12,9 +12,9 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
FROM alpine:3.7 FROM alpine:3.9
RUN apk update && apk add ca-certificates socat && rm -rf /var/cache/apk/* RUN apk add --no-cache ca-certificates socat
ENV HOME /tmp ENV HOME /tmp
@ -24,4 +24,3 @@ COPY tiller /tiller
EXPOSE 44134 EXPOSE 44134
USER 65534 USER 65534
ENTRYPOINT ["/tiller"] ENTRYPOINT ["/tiller"]

@ -12,9 +12,9 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
FROM alpine:3.7 FROM alpine:3.9
RUN apk update && apk add ca-certificates && rm -rf /var/cache/apk/* RUN apk add --no-cache ca-certificates
ENV HOME /tmp ENV HOME /tmp
@ -23,4 +23,3 @@ COPY tiller /tiller
EXPOSE 44134 EXPOSE 44134
USER 65534 USER 65534
ENTRYPOINT ["/tiller", "--experimental-release"] ENTRYPOINT ["/tiller", "--experimental-release"]

@ -12,9 +12,9 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
FROM alpine:3.3 FROM alpine:3.9
RUN apk update && apk add ca-certificates && rm -rf /var/cache/apk/* RUN apk add --no-cache ca-certificates
ENV HOME /tmp ENV HOME /tmp

Loading…
Cancel
Save