feat(build): add Dockerfile (#168)

This commit is contained in:
Eldor 2023-12-31 15:57:47 +02:00 committed by GitHub
parent cbfcce1dd6
commit f367d198f9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

9
Dockerfile Normal file
View File

@ -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"]