use gitea action runners

This commit is contained in:
Sebastian Hugentobler 2023-12-20 15:32:08 +01:00
parent 88979d327b
commit 1388920053
Signed by: shu
GPG key ID: BB32CF3CA052C2F0
3 changed files with 13 additions and 12 deletions

25
Containerfile Normal file
View file

@ -0,0 +1,25 @@
FROM docker.io/thallian/confd-env:3.19-3.1.6.2
RUN apk add --no-cache \
openssl \
openssh-client \
zlib \
perl \
proftpd \
proftpd-mod_sftp \
proftpd-utils
RUN addgroup -g 2222 access
RUN addgroup proftpd access
RUN rm /etc/proftpd/dhparams.pem
RUN mkdir /etc/proftpd/keys/ && mkdir /run/proftpd
RUN chown -R proftpd:proftpd /run/proftpd
ADD /rootfs /
WORKDIR /
VOLUME /var/lib/ftp/data
EXPOSE 2222