31a4e29c81
Should only use `ADD` for URLs (and even then, `curl` or `wget` are preferred, for numerous reasons, even within this repo) and when extracting archive contents as part of the `ADD` operation; otherwise `COPY` is clearer and (slightly) more efficient.
8 lines
169 B
Docker
8 lines
169 B
Docker
FROM aerospike:latest
|
|
|
|
LABEL maintainer="Luciano Jr <luciano@lucianojr.com.br>"
|
|
|
|
RUN rm /etc/aerospike/aerospike.conf
|
|
|
|
COPY aerospike.conf /etc/aerospike/aerospike.conf
|