Starting in on some multistage
This commit is contained in:
parent
0fab25736f
commit
478cee9e47
1 changed files with 20 additions and 2 deletions
|
@ -1,10 +1,28 @@
|
|||
## base image for github.com/lbryio/reflector.go release binaries
|
||||
FROM ubuntu:18:04
|
||||
FROM golang:1.11.1 as builder
|
||||
MAINTAINER chamunks [at] gmail [dot] com
|
||||
|
||||
RUN export GOROOT=$GOPATH/bin && \
|
||||
go get -v -u github.com/lbryio/reflector.go && \
|
||||
cd "/go/src/github.com/lbryio/reflector.go" && \
|
||||
make && \
|
||||
mv ./bin/prism-bin /usr/bin/prism-bin && \
|
||||
chmod +x /usr/bin/prism-bin
|
||||
|
||||
## base image for github.com/lbryio/reflector.go release binaries
|
||||
FROM ubuntu:18:04 as app
|
||||
MAINTAINER chamunks [at] gmail [dot] com
|
||||
|
||||
COPY /go/src/github.com/lbryio/reflector.go/bin/prism-bin /usr/bin/prism-bin
|
||||
ADD start.sh /usr/local/bin/start
|
||||
ADD docker-entrypoint.sh /usr/local/bin/docker-entrypoint
|
||||
|
||||
RUN adduser reflector --gecos GECOS --shell /bin/bash --disabled-password --home /data/ && \
|
||||
apt-get update && \
|
||||
apt-get -y install
|
||||
apt-get -y install && \
|
||||
wget -O /data/config.tmpl https://raw.githubusercontent.com/lbryio/reflector.go/master/config.tmpl && \
|
||||
chown -R 1000:1000 /data/config.tmpl
|
||||
|
||||
USER reflector
|
||||
|
||||
CMD ["start"]
|
||||
|
|
Loading…
Reference in a new issue