Skip to content

Commit

Permalink
Merge pull request huan#37 from martijnrondeel/master
Browse files Browse the repository at this point in the history
Use alpine:latest as base image
  • Loading branch information
huan authored Jul 22, 2018
2 parents 6cc2627 + dc196ba commit 9118f2b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
FROM sillelien/base-alpine:0.10
MAINTAINER Zhuohuan LI <zixia@zixia.net>
FROM alpine:latest
LABEL maintainer="Zhuohuan LI <zixia@zixia.net>"

ENV BATS_VERSION 0.4.0

## Install System

RUN apk update && apk add \
RUN apk add --update --no-cache \
bash \
curl \
drill \
Expand All @@ -19,7 +19,7 @@ RUN apk update && apk add \
&& tar -xzf "/tmp/v${BATS_VERSION}.tar.gz" -C /tmp/ \
&& bash "/tmp/bats-${BATS_VERSION}/install.sh" /usr/local \
\
&& rm -rf /var/cache/apk/* && rm -rf /tmp/*
&& rm -rf /tmp/*

## Configure Service

Expand Down

0 comments on commit 9118f2b

Please sign in to comment.