dockerfile fix

This commit is contained in:
Akshit Agrawal
2024-01-18 13:36:36 +05:30
parent 5e7a1be605
commit 096ed6e83b
+3 -2
View File
@@ -1,8 +1,9 @@
FROM --platform=linux/amd64 alpine:latest as base
WORKDIR /app
RUN apk --no-cache add ca-certificates
ADD ./drone-helm /bin/
COPY ./drone-helm /app/
ENTRYPOINT ["/bin/drone-helm"]
ENTRYPOINT ["./app/drone-helm"]