t2-stat-parser/build/go/Dockerfile
Anthony Mineo 05bb43acde init
2020-02-06 16:26:32 -05:00

19 lines
No EOL
358 B
Docker

FROM golang:1.13.6
LABEL maintainer="Anthony Mineo <anthonymineo@gmail.com>"
WORKDIR /app
# Go Packages
RUN go get -u -v \
# GUID Generator
github.com/rs/xid \
# PostgreSQL Driver
github.com/jackc/pgx \
github.com/jmoiron/sqlx \
# Better Error Handling
github.com/pkg/errors
COPY ./app/t2-stats /app
ENTRYPOINT go run main.go