Fixed docker context
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Evann Regnault 2024-05-04 16:52:23 +02:00
parent 7c54854380
commit 3d99984bfc
2 changed files with 1 additions and 2 deletions

View file

@ -13,5 +13,4 @@ steps:
from_secret: DOCKER_PASSWORD from_secret: DOCKER_PASSWORD
repo: r.regnault.dev/drone-discord-webhook repo: r.regnault.dev/drone-discord-webhook
dockerfile: docker/Dockerfile dockerfile: docker/Dockerfile
context: src/
force_tag: true force_tag: true

View file

@ -1,7 +1,7 @@
FROM alpine FROM alpine
RUN apk add jq curl bash RUN apk add jq curl bash
COPY . /app COPY ./src /app
WORKDIR /app WORKDIR /app
RUN chmod +x launch.sh RUN chmod +x launch.sh