Initial commit

This commit is contained in:
Gašper Dobrovoljc
2023-06-20 18:59:30 +02:00
commit f1d2e242d8
8 changed files with 55 additions and 0 deletions

13
Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
FROM alpine:3.18
RUN apk add --no-cache --update-cache frr wireguard-tools tini
RUN mkdir -p /var/run/frr
RUN chown -R frr:frr /etc/frr /var/run/frr
ENTRYPOINT ["/sbin/tini", "--"]
COPY docker-entrypoint.sh /usr/local/bin/
CMD ["sh", "-c", "/usr/local/bin/docker-entrypoint.sh"]