Add some missing stuff
This commit is contained in:
parent
623a69d025
commit
cfb4daaf1e
6 changed files with 93 additions and 3 deletions
12
Dockerfile
Normal file
12
Dockerfile
Normal file
|
@ -0,0 +1,12 @@
|
|||
FROM golang:latest
|
||||
MAINTAINER Andreas Neue <an@dnix.de>
|
||||
|
||||
RUN apt -y update && apt -y upgrade && apt-get install -y fortune vim tzdata ca-certificates && apt-get clean
|
||||
RUN ln -fs /usr/share/zoneinfo/Europe/Berlin /etc/localtime && dpkg-reconfigure -f noninteractive tzdata
|
||||
|
||||
WORKDIR /go/src/ircd
|
||||
COPY . .
|
||||
RUN go get -d -v ./...
|
||||
RUN go install -v ./...
|
||||
|
||||
CMD ["ircd", "-conf", "/go/src/ircd/conf/server.conf"]
|
Loading…
Add table
Add a link
Reference in a new issue