anthony8p2 commited on
Commit
d432d84
1 Parent(s): 03c9c5e

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +23 -0
Dockerfile ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM golang:1.21 AS builder
2
+
3
+ ENV CGO_ENABLED=0
4
+
5
+ RUN apt-get update && apt-get install -y git
6
+
7
+ RUN git clone https://github.com/y22emc2/Duck2api.git /app
8
+
9
+ WORKDIR /app
10
+
11
+ RUN go mod download
12
+
13
+ RUN go build -ldflags "-s -w" -o /app/duck2api .
14
+
15
+ FROM alpine:latest
16
+
17
+ WORKDIR /app
18
+
19
+ COPY --from=builder /app/duck2api /app/duck2api
20
+
21
+ EXPOSE 8080
22
+
23
+ CMD ["./duck2api"]