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

WORKDIR /home

COPY main.go /home/main.go

RUN ["go", "get", "github.com/gorilla/mux"]
RUN ["go", "get", "git.darknebu.la/GalaxySimulator/structs"]

ENTRYPOINT ["go", "run", "/home/main.go"]