-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #75 from jingyuanliang/master
Modernize ip-masq-agent codebase
- Loading branch information
Showing
946 changed files
with
267,974 additions
and
83,650 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,7 @@ | |
/.push-* | ||
/.container-* | ||
/.dockerfile-* | ||
/.licenses | ||
|
||
# Emacs save files | ||
*~ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,10 +12,14 @@ | |
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
FROM ARG_FROM | ||
FROM {ARG_FROM} | ||
|
||
MAINTAINER Michael Taufen <[email protected]> | ||
# Add the platform-specific binary. | ||
COPY bin/{ARG_OS}_{ARG_ARCH}/{ARG_BIN} /{ARG_BIN} | ||
|
||
ADD bin/ARG_ARCH/ARG_BIN /ARG_BIN | ||
# Add third-party licenses. | ||
COPY .licenses/ /LICENSES/ | ||
|
||
ENTRYPOINT ["/ARG_BIN"] | ||
ENV HOME / | ||
|
||
ENTRYPOINT ["/{ARG_BIN}"] |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.