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

WORKDIR /home

COPY *.go /home/

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

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