diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index c65356f..7e19b19 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -30,6 +30,10 @@ jobs: run: | go build -o pogdark-api . + - name: Confirm file presence + run: | + ls -al . + - name: Build Docker Image run: | docker build -t localhost:5000/pogdark-api:latest . diff --git a/Dockerfile b/Dockerfile index d8f19aa..e3a1dcb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,4 @@ FROM scratch -WORKDIR /app -COPY pogdark-api /app/ +COPY ./pogdark-api /app/ EXPOSE 8080 CMD ["/app/pogdark-api"] \ No newline at end of file