refactor: move scheduled_tasks service to services/ folder

This commit is contained in:
spiral 2022-07-10 01:13:35 -04:00
parent 371d677af1
commit 5097eb9ce2
No known key found for this signature in database
GPG key ID: 244A11E4B0BCF40E
8 changed files with 3 additions and 3 deletions

View file

@ -1,15 +0,0 @@
FROM alpine:latest AS builder
RUN apk add go
WORKDIR /build
COPY scheduled_tasks/ /build
RUN go build .
FROM alpine:latest
COPY --from=builder /build/scheduled_tasks /bin/runner
ENTRYPOINT ["/bin/runner"]