Skip to content

Commit

Permalink
Add some dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
ushios committed Jul 3, 2019
1 parent 90c95aa commit 5b403b2
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: '2'
version: "2"
jobs:
build:
working_directory: ~/receiver
Expand Down
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

FROM golang:1.12-alpine
LABEL maintainer "UshioShugo<ushio.s@gmail.com>"

Expand All @@ -12,3 +11,5 @@ RUN apk add --no-cache --virtual .goget \
git && \
go get -v && \
apk del .goget

RUN apk add --no-cache gcc g++
8 changes: 8 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@

.PHONY: test build

build:
docker-compose build

test:
docker-compose run app go test -cover ./...

0 comments on commit 5b403b2

Please sign in to comment.