FROM golang:latest

WORKDIR /home
COPY *.go /home/

RUN go get github.com/gorilla/mux

EXPOSE 3333

ENTRYPOINT go run .