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

WORKDIR /home

COPY *.go /home/

RUN ["mkdir", "/home/db"]
RUN ["go", "get", "github.com/gorilla/mux"]
RUN ["go", "get", "git.darknebu.la/GalaxySimulator/structs"]
RUN ["ls", "-l"]

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