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