add docker
This commit is contained in:
12
Dockerfile
Normal file
12
Dockerfile
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
FROM golang:alpine AS builder
|
||||||
|
WORKDIR /app
|
||||||
|
COPY . .
|
||||||
|
RUN go build -o main .
|
||||||
|
|
||||||
|
|
||||||
|
FROM alpine:latest
|
||||||
|
WORKDIR /app
|
||||||
|
COPY --from=builder /app/main /app/main
|
||||||
|
COPY --from=builder /app/templates /app/templates
|
||||||
|
EXPOSE 8181
|
||||||
|
CMD ["/app/main"]
|
||||||
2
main.go
2
main.go
@@ -72,7 +72,7 @@ func main() {
|
|||||||
http.NotFound(w, r)
|
http.NotFound(w, r)
|
||||||
})
|
})
|
||||||
|
|
||||||
port := ":8080"
|
port := ":8181"
|
||||||
fmt.Printf("Starting Go server on http://localhost%s\n", port)
|
fmt.Printf("Starting Go server on http://localhost%s\n", port)
|
||||||
fmt.Printf("Open http://localhost%s in your browser\n", port)
|
fmt.Printf("Open http://localhost%s in your browser\n", port)
|
||||||
fmt.Printf("Serving files directly from templates directory\n")
|
fmt.Printf("Serving files directly from templates directory\n")
|
||||||
|
|||||||
Reference in New Issue
Block a user