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

# Setup the work directory
WORKDIR /home

# Copy the files to the WORKDIR
COPY main.go /home/main.go

# Install go packages
RUN ["go", "get", "git.darknebu.la/GalaxySimulator/structs"]
RUN ["go", "get", "github.com/gorilla/mux"]

# Start the webserver
ENTRYPOINT ["go", "run", "/home/main.go"]