Skip to content

Commit

Permalink
Merge pull request #75 from jingyuanliang/master
Browse files Browse the repository at this point in the history
Modernize ip-masq-agent codebase
  • Loading branch information
k8s-ci-robot authored May 2, 2022
2 parents 9963332 + 05d01d7 commit 0fe776e
Show file tree
Hide file tree
Showing 946 changed files with 267,974 additions and 83,650 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
/.push-*
/.container-*
/.dockerfile-*
/.licenses

# Emacs save files
*~
Expand Down
12 changes: 8 additions & 4 deletions Dockerfile.in
Original file line number Diff line number Diff line change
Expand Up @@ -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}"]
101 changes: 0 additions & 101 deletions Godeps/Godeps.json

This file was deleted.

5 changes: 0 additions & 5 deletions Godeps/Readme

This file was deleted.

Loading

0 comments on commit 0fe776e

Please sign in to comment.