Skip to content

Commit 68f3aa0

Browse files
committed
clean dockerfile
1 parent 683ca76 commit 68f3aa0

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

Dockerfile

-2
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,12 @@ ENV APP_NAME=ponder
33
ENV WORKDIR=/app
44
WORKDIR $WORKDIR
55
COPY . .
6-
RUN apk add --no-cache build-base pkgconfig alsa-lib-dev
76
RUN go mod download
87
RUN go build -o /$APP_NAME
98

109
## Deploy
1110
FROM alpine:3.21.0
1211
ENV APP_NAME=ponder
1312
WORKDIR /
14-
RUN apk add --no-cache alsa-lib
1513
COPY --from=builder /$APP_NAME /$APP_NAME
1614
ENTRYPOINT ["/ponder"]

0 commit comments

Comments
 (0)