Skip to content

Commit

Permalink
fix(image): added alpine version (#1)
Browse files Browse the repository at this point in the history
added alpine version
  • Loading branch information
tpayne1 authored and ethanfrogers committed Oct 9, 2017
1 parent ff1cec4 commit 810bc31
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
18 changes: 18 additions & 0 deletions .drone.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
workspace:
base: /go
path: src/github.com/skuid/dimsum
pipeline:
build:
image: golang:1.9-alpine
commands:
- go test -v $(go list ./... | grep -v vendor)
- go build -v
publish:
image: plugins/docker
secrets: [docker_username, docker_password]
registry: quay.io
repo: quay.io/skuid/dimsum
tags:
- ${DRONE_TAG}
when:
event: tag
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM alpine
FROM alpine:3.6

VOLUME /usr/src/config
VOLUME /usr/src/passwords
Expand Down

0 comments on commit 810bc31

Please sign in to comment.