Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Modernize ip-masq-agent codebase #75

Merged
merged 1 commit into from
May 2, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
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