Files
ci-image/Dockerfile
Fyodor Doletov d43be91db2
All checks were successful
Build docker image / Build docker image (push) Successful in 26s
init
2025-11-11 02:11:56 +03:00

12 lines
352 B
Docker

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