9 lines
250 B
Docker
9 lines
250 B
Docker
FROM ubuntu:22.04
|
|
|
|
RUN apt-get update && apt-get -y upgrade
|
|
RUN apt-get -y install avahi-utils libnss-mdns dos2unix
|
|
|
|
ADD entrypoint.sh /opt/entrypoint.sh
|
|
RUN dos2unix /opt/entrypoint.sh ; chmod +x /opt/entrypoint.sh
|
|
|
|
CMD ["sh", "/opt/entrypoint.sh"] |