10 lines
360 B
Docker
10 lines
360 B
Docker
## base image for github.com/lbryio/reflector.go release binaries
|
|
FROM ubuntu:18:04
|
|
MAINTAINER chamunks [at] gmail [dot] com
|
|
|
|
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
|