refactor
This commit is contained in:
18
tg_bot/Dockerfile
Normal file
18
tg_bot/Dockerfile
Normal file
@@ -0,0 +1,18 @@
|
||||
FROM golang:1.25-alpine AS build
|
||||
|
||||
WORKDIR /app/tg_bot
|
||||
|
||||
# Modules layer
|
||||
COPY tg_bot/go.mod tg_bot/go.sum ./
|
||||
COPY pkg /app/pkg
|
||||
RUN go mod download
|
||||
|
||||
# Build layer
|
||||
COPY tg_bot /app/tg_bot
|
||||
RUN CGO_ENABLED=0 GOOS=linux go build -o /tg_bot .
|
||||
|
||||
FROM alpine:latest AS run
|
||||
|
||||
COPY --from=build /tg_bot /tg_bot
|
||||
|
||||
CMD ["/tg_bot"]
|
||||
Reference in New Issue
Block a user