Parcourir la source

CMD not ENTRYPOINT

Fred Damstra (k8s1) il y a 2 ans
Parent
commit
7d7ac2c386
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. 2 2
      Dockerfile

+ 2 - 2
Dockerfile

@@ -1,6 +1,6 @@
-FROM ubuntu
+FROM ubuntu:latest
 
 COPY . /opt/update_route53
 RUN chmod 755 /opt/update_route53/update_route53.sh
 
-ENTRYPOINT ["/opt/update_route53/update_route53.sh"]
+CMD ["/opt/update_route53/update_route53.sh"]