dockerfile fix

This commit is contained in:
Akshit Agrawal
2024-01-19 15:01:41 +05:30
parent b37585eb55
commit 33ba1a52f7
+4 -4
View File
@@ -1,9 +1,9 @@
FROM alpine:latest
RUN apk --no-cache add ca-certificates
RUN apk add --no-cache libc6-compat
ADD ./drone-helm /bin/
WORKDIR /app
RUN chmod +x /bin/drone-helm
ADD ./drone-helm /app/
ENTRYPOINT ["/bin/drone-helm"]
ENTRYPOINT ["/app/drone-helm"]