-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
30 lines (22 loc) · 794 Bytes
/
Dockerfile
File metadata and controls
30 lines (22 loc) · 794 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
FROM python:3.9.16-slim-buster
WORKDIR /app
RUN apt-get update \
&& apt-get install -y build-essential curl \
&& curl -sL https://deb.nodesource.com/setup_14.x | bash - \
&& apt-get install -y nodejs --no-install-recommends \
&& rm -rf /var/lib/apt/lists/* /usr/share/doc /usr/share/man \
&& apt-get clean \
&& useradd --create-home python \
&& chown python:python -R /app
USER python
ENV DEBUG="${DEBUG}" \
PYTHONUNBUFFERED="true" \
PATH="${PATH}:/home/python/.local/bin" \
USER="python"
COPY --chown=python:python . .
RUN pip install .
RUN python manage.py tailwind install --no-input
RUN python manage.py tailwind build --no-input
RUN python manage.py collectstatic --no-input
ENTRYPOINT ["python", "manage.py"]
CMD ["--help"]