forked from saleor/saleor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile-map
More file actions
54 lines (44 loc) · 1.4 KB
/
Dockerfile-map
File metadata and controls
54 lines (44 loc) · 1.4 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
### Build and install packages
FROM python:3.9 as build-python
RUN apt-get -y update \
&& apt-get install -y gettext \
# Cleanup apt cache
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
# Install Python dependencies
WORKDIR /app
RUN --mount=type=cache,mode=0755,target=/root/.cache/pip pip install poetry==1.7.0
RUN poetry config virtualenvs.create false
COPY poetry.lock pyproject.toml /app/
RUN --mount=type=cache,mode=0755,target=/root/.cache/pypoetry poetry install --no-root
### Final image
FROM python:3.9-slim
RUN groupadd -r saleor && useradd -r -g saleor saleor
RUN apt-get update \
&& apt-get install -y \
libcairo2 \
libgdk-pixbuf-2.0-0 \
liblcms2-2 \
libopenjp2-7 \
libpango-1.0-0 \
libpangocairo-1.0-0 \
libssl3 \
libtiff6 \
libwebp7 \
libxml2 \
libpq5 \
shared-mime-info \
libmagic1 \
procps \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
RUN echo 'image/webp webp' >> /etc/mime.types
RUN echo 'image/avif avif' >> /etc/mime.types
RUN mkdir -p /app/media /app/static \
&& chown -R saleor:saleor /app/
COPY --from=build-python /usr/local/lib/python3.9/site-packages/ /usr/local/lib/python3.9/site-packages/
COPY --from=build-python /usr/local/bin/ /usr/local/bin/
WORKDIR /app
EXPOSE 8000
ENV PYTHONUNBUFFERED 1
CMD ["gunicorn", "--bind", ":8000", "--workers", "8", "--worker-class", "saleor.asgi.gunicorn_worker.UvicornWorker", "saleor.asgi:application"]