summary refs log tree commit diff
path: root/Dockerfile
blob: c46730be957f29e3ba897a4801696ab067651044 (plain)
1
2
3
4
5
6
7
8
9
10
FROM golang:latest

WORKDIR /home

COPY * /home/

RUN go get github.com/gorilla/mux
RUN go get git.darknebu.la/Satellite/tle

ENTRYPOINT go run . -p 8080