mirror of
https://github.com/chillout2k/gulag.git
synced 2025-12-13 16:00:18 +00:00
18 lines
479 B
Docker
18 lines
479 B
Docker
FROM debian
|
|
LABEL maintainer="Dominik Chilla"
|
|
|
|
ENV DEBIAN_FRONTEND=noninteractive \
|
|
TZ=Europe/Berlin
|
|
|
|
RUN set -ex ; \
|
|
apt-get -qq update \
|
|
&& apt-get -qq --no-install-recommends install \
|
|
uwsgi-plugin-python3 python3-setuptools python3-flask \
|
|
python3-flask-restful python3-mysql.connector \
|
|
uwsgi uwsgi-plugin-python3 procps net-tools \
|
|
python3-pip libmagic1 \
|
|
&& pip3 install python-magic
|
|
|
|
RUN /bin/mkdir /config /socket /app
|
|
COPY app/*.py /app/
|