summaryrefslogtreecommitdiff
path: root/Dockerfile
blob: a743200f89f482f211b8f14919705a0f09bec6b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
FROM debian:bookworm

RUN apt-get update \
    && apt-get install --no-install-recommends -y \
       git openssh-server \
    && rm -rf /var/lib/apt/lists/*

EXPOSE 22

RUN sed -i /etc/ssh/sshd_config \
        -e 's/#PasswordAuthentication.*/PasswordAuthentication yes/' \
        -e 's/#PermitEmptyPasswords.*/PermitEmptyPasswords yes/'

RUN adduser --shell /usr/bin/shackle shukkie && passwd -d shukkie
RUN mkdir -p /home/shukkie/git/shukkie && chown -R shukkie:shukkie /home/shukkie/git
RUN git init --bare /home/shukkie/disallowed.git && chown -R shukkie:shukkie /home/shukkie/disallowed.git
COPY . /opt/shackle

ARG SHELL=target/debug/shackle
RUN cp /opt/shackle/${SHELL} /usr/bin/shackle

ENTRYPOINT service ssh start && echo "Ready" && bash

# docker build -t shackle-server --build-arg SHELL=target/debug/shackle ./
# docker run -it -p 2022:22 shackle-server
# ssh -p 2022 shukkie@localhost