Skip to content

Commit

Permalink
feat(build): add Dockerfile (#168)
Browse files Browse the repository at this point in the history
  • Loading branch information
3ldor authored Dec 31, 2023
1 parent cbfcce1 commit f367d19
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
FROM alpine:3.19

# glibc compatibility
RUN apk add --no-cache gcompat libstdc++

# copy gsc-tool
COPY --chmod=755 gsc-tool /usr/local/bin/

ENTRYPOINT ["/usr/local/bin/gsc-tool"]

0 comments on commit f367d19

Please sign in to comment.