63 lines
2.2 KiB
Docker
63 lines
2.2 KiB
Docker
#
|
|
# Copyright © 2021,2022 IsardVDI S.L.
|
|
#
|
|
# This file is part of DD
|
|
#
|
|
# DD is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU Affero General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or (at your
|
|
# option) any later version.
|
|
#
|
|
# DD is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
# FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
|
|
# details.
|
|
#
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
# along with DD. If not, see <https://www.gnu.org/licenses/>.
|
|
#
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
FROM alpine:3.12.0 as production
|
|
MAINTAINER isard <info@isardvdi.com>
|
|
|
|
RUN apk add python3 py3-pip py3-pyldap~=3.2.0
|
|
RUN pip3 install --upgrade pip
|
|
RUN apk add --no-cache --virtual .build_deps \
|
|
build-base \
|
|
python3-dev \
|
|
libffi-dev \
|
|
gcc python3-dev linux-headers musl-dev postgresql-dev
|
|
COPY admin/docker/requirements.pip3 /requirements.pip3
|
|
RUN pip3 install --no-cache-dir -r requirements.pip3
|
|
RUN apk del .build_deps
|
|
|
|
RUN apk add --no-cache curl py3-yaml yarn libpq openssl py3-pillow
|
|
|
|
RUN wget -O /usr/lib/python3.8/site-packages/diceware/wordlists/wordlist_cat_ascii.txt https://raw.githubusercontent.com/1ma/diceware-cat/master/cat-wordlist-ascii.txt
|
|
|
|
# SSH configuration
|
|
# ARG SSH_ROOT_PWD
|
|
# RUN apk add openssh
|
|
# RUN echo "root:$SSH_ROOT_PWD" |chpasswd
|
|
# RUN sed -i \
|
|
# -e 's|[#]*PermitRootLogin prohibit-password|PermitRootLogin yes|g' \
|
|
# -e 's|[#]*PasswordAuthentication yes|PasswordAuthentication yes|g' \
|
|
# -e 's|[#]*ChallengeResponseAuthentication yes|ChallengeResponseAuthentication yes|g' \
|
|
# -e 's|[#]*UsePAM yes|UsePAM yes|g' \
|
|
# -e 's|[#]#Port 22|Port 22|g' \
|
|
# /etc/ssh/sshd_config
|
|
|
|
# Let's test 0.26.1 python-keycloak version
|
|
# RUN apk add --no-cache git && \
|
|
# git clone -b delete_realm_roles https://github.com/isard-vdi/python-keycloak.git && \
|
|
# cd python-keycloak && \
|
|
# python3 setup.py install && \
|
|
# apk del git
|
|
|
|
COPY admin/src /admin
|
|
RUN cd /admin/admin && yarn install
|
|
|
|
COPY admin/docker/run.sh /run.sh
|
|
|
|
#EXPOSE 7039
|
|
CMD [ "/run.sh" ] |