initial import
All checks were successful
continuous-integration/drone/tag Build is passing

This commit is contained in:
2022-05-22 19:13:40 +02:00
commit e10fc5cb48
5 changed files with 799 additions and 0 deletions

11
Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM alpine:3.15
RUN \
apk -U add rsyslog rsyslog-mmutf8fix
COPY run.sh /
EXPOSE 514/tcp
EXPOSE 514/udp
ENTRYPOINT ["/bin/sh", "/run.sh"]