1
0
mirror of https://github.com/eventials/goevents.git synced 2025-04-24 13:48:53 +08:00
eventials.goevents/Dockerfile

13 lines
452 B
Docker
Raw Normal View History

FROM golang:1.10
2016-11-25 18:51:34 -02:00
RUN apt-get update && apt-get install -y wget
RUN wget https://github.com/jwilder/dockerize/releases/download/v0.2.0/dockerize-linux-amd64-v0.2.0.tar.gz
RUN tar -C /usr/local/bin -xzvf dockerize-linux-amd64-v0.2.0.tar.gz
RUN mkdir -p /go/src/github.com/eventials/goevents
WORKDIR /go/src/github.com/eventials/goevents
RUN go get github.com/streadway/amqp
2017-07-17 10:14:51 -03:00
RUN go get github.com/sirupsen/logrus
2016-11-25 18:51:34 -02:00
RUN go get github.com/stretchr/testify