mirror of
https://github.com/outbackdingo/amnezia-client.git
synced 2026-01-27 10:18:14 +00:00
10 lines
251 B
Docker
10 lines
251 B
Docker
FROM 3proxy/3proxy:latest
|
|
|
|
LABEL maintainer="AmneziaVPN"
|
|
|
|
RUN mkdir -p /opt/amnezia
|
|
RUN echo -e "#!/bin/bash\ntail -f /dev/null" > /opt/amnezia/start.sh
|
|
RUN chmod a+x /opt/amnezia/start.sh
|
|
|
|
ENTRYPOINT [ "/bin/sh", "/opt/amnezia/start.sh" ]
|
|
CMD [ "" ] |