Some checks reported errors
continuous-integration/drone/push Build encountered an error
8 lines
No EOL
131 B
Docker
8 lines
No EOL
131 B
Docker
FROM alpine
|
|
RUN apk add jq curl bash
|
|
|
|
COPY . /app
|
|
WORKDIR /app
|
|
RUN chmod +x launch.sh
|
|
|
|
ENTRYPOINT [ "/bin/bash", "/app/launch.sh" ] |