16 lines
485 B
Docker
16 lines
485 B
Docker
FROM golang:latest
|
|
MAINTAINER tgic <farmer1992@gmail.com>
|
|
|
|
RUN apt-get update && apt-get install -y libpam0g-dev libpam-google-authenticator
|
|
|
|
RUN ln -sf /usr/include/security/_pam_types.h /usr/include/security/pam_types.h
|
|
|
|
ADD . /go/src/github.com/tg123/sshpiper/
|
|
RUN go install -ldflags "$(/go/src/github.com/tg123/sshpiper/sshpiperd/ldflags.sh)" -tags pam github.com/tg123/sshpiper/sshpiperd
|
|
|
|
EXPOSE 2222
|
|
|
|
ADD entrypoint.sh /
|
|
ENTRYPOINT ["/entrypoint.sh"]
|
|
|
|
CMD ["/go/bin/sshpiperd"]
|