2023-12-31 08:57:47 -05:00
|
|
|
FROM alpine:3.19
|
|
|
|
|
|
|
|
RUN apk add --no-cache gcompat libstdc++
|
|
|
|
|
2024-01-01 15:15:19 -05:00
|
|
|
COPY --chmod=755 ./linux-x64-release/gsc-tool /usr/local/bin/
|
2023-12-31 08:57:47 -05:00
|
|
|
|
2024-01-20 10:27:04 -05:00
|
|
|
RUN addgroup -S gsc-tool && adduser -S gsc-tool -G gsc-tool
|
|
|
|
USER gsc-tool
|
|
|
|
|
2024-01-01 15:15:19 -05:00
|
|
|
ENTRYPOINT ["/usr/local/bin/gsc-tool"]
|