Defined CMD in Dockerfile; ENTRYPOINT now supports user-provided commands
All checks were successful
Update Docker Hub Description / dockerHubDescription (push) Successful in 12s
Docker Image CI / build_docker_images (push) Successful in 12m6s

This commit is contained in:
GianLuca Vagnuzzi
2026-01-02 08:22:08 +01:00
parent 347abc25b2
commit a9be070ff0
4 changed files with 48 additions and 19 deletions

View File

@@ -24,4 +24,4 @@ RUN set -xe && \
ADD rootfs /
ENTRYPOINT ["/entrypoint.sh"]
CMD ["in.tftpd --ipv4 --foreground --listen --address 0.0.0.0:69 --create --secure -vvv /var/tftpboot"]
CMD ["in.tftpd", "--ipv4", "--foreground", "--listen", "--address", "0.0.0.0:69", "--create", "--secure", "-vvv", "/var/tftpboot"]