initial
This commit is contained in:
+19
@@ -0,0 +1,19 @@
|
||||
# syntax=docker/dockerfile:1
|
||||
FROM golang:1.24
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
ENV PATH="/go/bin:${PATH}"
|
||||
|
||||
COPY go.mod go.sum ./
|
||||
RUN go mod download
|
||||
|
||||
COPY . .
|
||||
|
||||
# Explicitly copy and set permissions for servego4lage.sh
|
||||
COPY servego4lage.sh /app/servego4lage.sh
|
||||
RUN chmod +x /app/servego4lage.sh
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
ENTRYPOINT ["/app/servego4lage.sh"]
|
||||
Reference in New Issue
Block a user