Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Dockerfile - github.com/charleszlu/murmur-info.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8429a49e6e1364fbf7d8d590bc0307784c8fff45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
FROM goozler/zeroc_ice_python

RUN apk --update add --upgrade --no-cache openssh bash tzdata

COPY entrypoint.sh /entrypoint.sh
COPY Murmur.ice /murmur-info/Murmur.ice
COPY murmur-info.py /murmur-info/murmur-info.py

RUN  chmod +x /entrypoint.sh \
	  && mkdir -p /root/.ssh \
	  && rm -rf /var/cache/apk/* /tmp/*

ENV OPENSSH_VERSION=${OPENSSH_VERSION} \
    ROOT_PASSWORD=root \
    KEYPAIR_LOGIN=false

VOLUME ["/etc/ssh"]

EXPOSE 22

ENTRYPOINT ["/entrypoint.sh"]