forked from tilde/ssh-reg
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.2 KiB
Docker
48 lines
1.2 KiB
Docker
5 years ago
|
FROM python:3-slim
|
||
|
|
||
|
MAINTAINER n1trux
|
||
|
RUN apt-get update &&\
|
||
|
apt-get -y upgrade &&\
|
||
|
DEBIAN_FRONTEND=noninteractive apt-get -y install \
|
||
|
nano rsync openssh-server acl
|
||
|
|
||
|
# Clean up APT when done.
|
||
|
RUN apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
|
||
|
|
||
|
|
||
|
# private/{scripts, administrate.py}, public/{scripts, userapplications.py}, config/userapplicatonsconfig.ini
|
||
|
#configs, logs, db
|
||
|
COPY config/applicationsconfig.ini /app/data/applicationsconfig.ini
|
||
|
|
||
|
# admin scripts
|
||
|
COPY private/ /app/admin/
|
||
|
|
||
|
# user accessible scripts
|
||
|
# Make TILDE_ENV
|
||
|
COPY config/environment /app/user/.ssh/environment
|
||
|
COPY public/ /app/user/
|
||
|
#SSH config into /etc :)
|
||
|
COPY config/etc /etc
|
||
|
|
||
|
# create user for applications
|
||
|
RUN useradd -Md /app/user/ -s /app/user/userapplication.py tilde
|
||
|
|
||
|
# make tilde's password empty
|
||
|
RUN passwd -d tilde
|
||
|
RUN usermod -U tilde
|
||
|
|
||
|
# add admin user
|
||
|
RUN useradd -Md /app/admin -s /app/admin/administrate.py admin
|
||
|
# privilege separation directory
|
||
|
RUN mkdir -p /var/run/sshd
|
||
|
|
||
|
# expose SSH port
|
||
|
EXPOSE 22
|
||
|
ENV TILDE_CONF="/app/data/applicationsconfig.ini"
|
||
|
RUN touch /app/data/applications.sqlite
|
||
|
RUN touch /app/data/applications.log
|
||
|
# Doesnt work, @TODO why
|
||
|
#RUN setfacl -R -m u:tilde:rwx /app/data/
|
||
|
RUN chown -R tilde /app/data
|
||
|
CMD ["/usr/sbin/sshd", "-D"]
|