refactor: move scheduled_tasks service to services/ folder
This commit is contained in:
15
services/scheduled_tasks/Dockerfile
Normal file
15
services/scheduled_tasks/Dockerfile
Normal file
@@ -0,0 +1,15 @@
|
||||
FROM alpine:latest AS builder
|
||||
|
||||
RUN apk add go
|
||||
|
||||
WORKDIR /build
|
||||
|
||||
COPY services/scheduled_tasks/ /build
|
||||
|
||||
RUN go build .
|
||||
|
||||
FROM alpine:latest
|
||||
|
||||
COPY --from=builder /build/scheduled_tasks /bin/runner
|
||||
|
||||
ENTRYPOINT ["/bin/runner"]
|
Reference in New Issue
Block a user