Spaces:
hzwluoye
/
Sleeping

hzwluoye commited on
Commit
477ebfa
1 Parent(s): 4330789

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +5 -5
Dockerfile CHANGED
@@ -4,20 +4,20 @@ ENV CGO_ENABLED=0
4
 
5
  RUN apt-get update && apt-get install -y git
6
 
7
- RUN git clone https://github.com/s181462537/aurora.git /app
8
 
9
  WORKDIR /app
10
 
11
  RUN go mod download
12
 
13
- RUN go build -ldflags "-s -w" -o /app/aurora .
14
 
15
  FROM alpine:latest
16
 
17
  WORKDIR /app
18
- RUN apk add --no-cache tzdata
19
- COPY --from=builder /app/aurora /app/aurora
20
 
21
  EXPOSE 8080
22
 
23
- CMD ["./aurora"]
 
4
 
5
  RUN apt-get update && apt-get install -y git
6
 
7
+ RUN git clone https://github.com/s181462537/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
+ #RUN apk add --no-cache tzdata
19
+ COPY --from=builder /app/duck2api /app/duck2api
20
 
21
  EXPOSE 8080
22
 
23
+ CMD ["/app/duck2api"]