fix: correct COPY in dockerfile for relative path

Context of Docker build is relative to the Dockerfile, so don't need the src prefix here.
This commit is contained in:
Jeroen de Bruijn 2020-03-19 21:06:11 +01:00
parent 3e4d5f0dd6
commit 341841ebc6
No known key found for this signature in database
GPG key ID: 7D12D6AB2A547EBB

View file

@ -1,5 +1,5 @@
FROM renovate/renovate:19.175.0
COPY src/entrypoint.sh /usr/entrypoint.sh
COPY entrypoint.sh /usr/entrypoint.sh
ENTRYPOINT ["/usr/entrypoint.sh"]