Newer
Older
WORKDIR /opt/strudel2/src
COPY . /opt/strudel2/src
RUN apt update && apt install -y python3 gcc python3-pip openssh-client
RUN set -x \
&& addgroup --gid 33 --system www-data \
&& adduser --uid 33 --disabled-login --system --gid www-data www-data
RUN pip3 install -r requirements.txt && python3 ./setup.py install