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

WORKDIR /home

COPY /src /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", "."]