init
All checks were successful
Build docker image / Build docker image (push) Successful in 26s

This commit is contained in:
2025-11-11 02:11:56 +03:00
commit d43be91db2
4 changed files with 167 additions and 0 deletions

11
Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM alpine:3.22
RUN apk add --no-cache tzdata git openssh sed rsync bzip2 curl gpg gpg-agent yq jq helm docker nodejs \
&& mkdir -p /root/.ssh \
&& chmod 700 /root/.ssh \
&& mkdir -p /usr/local/bin
COPY drist /usr/local/bin/
RUN chmod 755 /usr/local/bin/drist
ENV TZ=Europe/Kyiv
RUN ln -sf /usr/share/zoneinfo/Europe/Kyiv /etc/localtime