File: Dockerfile

package info (click to toggle)
golang-github-sendgrid-rest 2.6.9-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 308 kB
  • sloc: makefile: 11
file content (13 lines) | stat: -rw-r--r-- 276 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
FROM golang:1.11

VOLUME ["/app"]
WORKDIR /app

# Get sendgrid-go
RUN mkdir -p /go/src/github.com/sendgrid && \
    cd /go/src/github.com/sendgrid && \
    git clone https://www.github.com/sendgrid/rest && \
    cd rest && \
    go get

ENTRYPOINT ["tail", "-f", "/dev/null"]