diff options
author | Emile <hanemile@protonmail.com> | 2019-02-05 22:47:54 +0100 |
---|---|---|
committer | Emile <hanemile@protonmail.com> | 2019-02-05 22:47:54 +0100 |
commit | e2ad8113e6e2765e0e70eadadf13bc30fa2a0e35 (patch) | |
tree | 67eb831c387b38cf92dd9b5be301f22427462bf4 /Dockerfile | |
parent | 1b466c994778b22a1e5b52f826068184a9596d2a (diff) |
added go module support
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile index 9fa6413..86f799f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM golang:latest WORKDIR /home -COPY /src /home/ +COPY main.go /home/ RUN ["go", "get", "git.darknebu.la/GalaxySimulator/structs"] RUN ["go", "get", "github.com/ajstarks/svgo"] |