diff options
author | Emile <hanemile@protonmail.com> | 2020-01-27 20:42:39 +0100 |
---|---|---|
committer | Emile <hanemile@protonmail.com> | 2020-01-27 20:42:39 +0100 |
commit | 3de39df49468e431f764daa35f03d2114d0de5ef (patch) | |
tree | 09d367d1ff398367790ea9a6236d84b04f326341 | |
parent | 25034011e0a2477ea276532b2c396e5b7213ca2a (diff) |
modified the dockerfile to use the correct path
-rw-r--r-- | Dockerfile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile index c0e236f..c0f9507 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,9 @@ FROM golang:1.10-alpine +WORKDIR /ssh-grab-passwords-map + # Setup -COPY src/* . +COPY src/* /ssh-grab-passwords-map/ # Install libs RUN apk add git |