initial commit
This commit is contained in:
15
Dockerfile
Normal file
15
Dockerfile
Normal file
@@ -0,0 +1,15 @@
|
||||
FROM alpine:latest
|
||||
|
||||
LABEL maintainer="Menno van Leeuwen <menno@vleeuwen.me>"
|
||||
LABEL description="A flexible UPnP port forwarding container that handles automatic port mapping and renewal"
|
||||
LABEL repository="https://github.com/vleeuwenmenno/docker-auto-upnp"
|
||||
|
||||
RUN apk --no-cache add \
|
||||
bash \
|
||||
miniupnpc \
|
||||
jq
|
||||
|
||||
COPY entrypoint.sh /entrypoint.sh
|
||||
RUN chmod +x /entrypoint.sh
|
||||
|
||||
ENTRYPOINT ["/entrypoint.sh"]
|
Reference in New Issue
Block a user