Fixed a bug where the docker run was not finding the script

This commit is contained in:
2020-01-10 17:24:06 +01:00
committed by GitHub
parent 123c5011f1
commit 8725096bfe

View File

@@ -1,3 +1,3 @@
FROM node:latest
COPY entrypoint.sh ./entrypoint.sh
ENTRYPOINT ["./entrypoint.sh"]
COPY entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]