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

WORKDIR /home

COPY main.go /home/

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

ENTRYPOINT ["go", "run", "."]