* feat: update app identifiers and development team for iOS and macOS builds * feat: rename AmneziaVPN to DefaultVPN in iOS configuration and code references * Complete rename * Missed folder renamed * Translation removed from commit * Another step of renaming * submodule reverted
10 lines
No EOL
250 B
Docker
10 lines
No EOL
250 B
Docker
FROM 3proxy/3proxy:latest
|
|
|
|
LABEL maintainer="DefaultVPN"
|
|
|
|
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 [ "" ] |