refactor: move dockerfiles to package folders
This commit is contained in:
15
scheduled_tasks/Dockerfile
Normal file
15
scheduled_tasks/Dockerfile
Normal file
@@ -0,0 +1,15 @@
|
||||
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"]
|
Reference in New Issue
Block a user