20 lines
595 B
Docker
20 lines
595 B
Docker
FROM python
|
|
|
|
LABEL org.opencontainers.image.source https://gitea.hostea.org/Hostea/dashboard
|
|
|
|
RUN useradd -ms /bin/bash -u 1001 hostea
|
|
RUN apt-get update && apt-get install -y ca-certificates git
|
|
USER hostea
|
|
|
|
WORKDIR /home/hostea
|
|
run mkdir app/
|
|
WORKDIR /home/hostea/app/
|
|
RUN pip3 install virtualenv
|
|
RUN python3 -m virtualenv venv
|
|
COPY requirements.txt .
|
|
# See https://github.com/pypa/pip/issues/9819
|
|
RUN ./venv/bin/pip install --use-feature=in-tree-build -r requirements.txt
|
|
COPY . .
|
|
#ENV . ./venv/bin/activate && make env
|
|
CMD [ "./venv/bin/python3", "manage.py", "runserver", "0.0.0.0:8000" ]
|