This repository has been archived on 2023-09-24. You can view files and clone it, but cannot push or open issues or pull requests.
takahe/docker/Dockerfile

25 lines
600 B
Docker
Raw Normal View History

ARG IMAGE_HOST=python
ARG IMAGE_LABEL=3.11.0-slim-buster
FROM ${IMAGE_HOST}:${IMAGE_LABEL}
2022-11-09 05:05:51 +01:00
RUN apt-get update && apt-get -y install libpq-dev libxml2-dev libxslt1-dev zlib1g-dev python3-dev build-essential
2022-11-09 05:05:51 +01:00
COPY requirements.txt requirements.txt
2022-11-19 01:24:43 +01:00
RUN pip3 install --upgrade pip \
&& pip3 install --upgrade -r requirements.txt
2022-11-09 05:05:51 +01:00
COPY . /takahe
WORKDIR /takahe
2022-11-19 01:24:43 +01:00
RUN TAKAHE_DATABASE_SERVER="postgres://x@example.com/x" python3 manage.py collectstatic
2022-11-19 01:24:43 +01:00
2022-11-09 05:05:51 +01:00
EXPOSE 8000
# Set some sensible defaults
ENV GUNICORN_CMD_ARGS="--workers 8"
CMD ["gunicorn", "takahe.wsgi:application", "-b", "0.0.0.0:8000"]