2018-10-08 22:53:51 +02:00
|
|
|
## base image for github.com/lbryio/reflector.go release binaries
|
|
|
|
FROM ubuntu:18:04
|
2018-10-14 14:30:06 +02:00
|
|
|
LABEL MAINTAINER="chamunks [at] gmail [dot] com"
|
2018-10-08 22:53:51 +02:00
|
|
|
|
2018-10-14 14:30:06 +02:00
|
|
|
COPY start.sh /usr/local/bin/start
|
|
|
|
COPY docker-entrypoint.sh /usr/local/bin/docker-entrypoint
|
2018-10-08 22:53:51 +02:00
|
|
|
|
|
|
|
RUN adduser reflector --gecos GECOS --shell /bin/bash --disabled-password --home /data/ && \
|
|
|
|
apt-get update && \
|
|
|
|
apt-get -y install
|