mirror of
https://github.com/Screenly/Anthias.git
synced 2026-05-18 13:30:05 -04:00
9 lines
197 B
Docker
9 lines
197 B
Docker
FROM balenalib/rpi-raspbian:buster
|
|
|
|
RUN apt-get update && \
|
|
apt-get -y install --no-install-recommends \
|
|
redis-server && \
|
|
apt-get clean
|
|
|
|
CMD ["redis-server", "--protected-mode", "no"]
|