Major updates/patches, functionality, api
Some checks failed
continuous-integration/drone/push Build is failing
Some checks failed
continuous-integration/drone/push Build is failing
This commit is contained in:
9
Dockerfile
Normal file
9
Dockerfile
Normal file
@ -0,0 +1,9 @@
|
||||
FROM golang:alpine AS builder
|
||||
|
||||
RUN go build -o sleeper
|
||||
|
||||
FROM alpine
|
||||
|
||||
COPY --from=builder sleeper /sleeper
|
||||
|
||||
CMD ["/sleeper"]
|
Reference in New Issue
Block a user