Fixed docker context
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Evann Regnault 2024-05-04 17:03:33 +02:00
parent dc0f74ab1d
commit c7d4a310c5

8
Dockerfile Normal file
View file

@ -0,0 +1,8 @@
FROM alpine
RUN apk add jq curl bash
COPY ./src /app
WORKDIR /app
RUN chmod +x launch.sh
ENTRYPOINT [ "/bin/bash", "/app/launch.sh" ]