mirror of
https://github.com/Screenly/Anthias.git
synced 2026-05-19 05:49:18 -04:00
* Upgrades base image to Buster (from Jessie) * Upgrades requirements * Refactors Dockerfiles to best practice
9 lines
189 B
Docker
9 lines
189 B
Docker
FROM balenalib/%%BALENA_MACHINE_NAME%%-debian:buster
|
|
|
|
RUN apt-get update && \
|
|
apt-get -y install --no-install-recommends \
|
|
redis-server && \
|
|
apt-get clean
|
|
|
|
CMD ["redis-server"]
|