Optimized dockerfile
This commit is contained in:
parent
b0fe98c091
commit
c857d092b1
12
Dockerfile
12
Dockerfile
@ -1,17 +1,25 @@
|
|||||||
FROM python:3.8-alpine
|
FROM python:3.8-alpine
|
||||||
|
|
||||||
|
#Install all dependencies.
|
||||||
RUN apk add --no-cache postgresql-libs gettext zlib libjpeg libxml2-dev libxslt-dev
|
RUN apk add --no-cache postgresql-libs gettext zlib libjpeg libxml2-dev libxslt-dev
|
||||||
|
|
||||||
|
#Print all logs without buffering it.
|
||||||
ENV PYTHONUNBUFFERED 1
|
ENV PYTHONUNBUFFERED 1
|
||||||
|
|
||||||
|
#This port will be used by gunicorn.
|
||||||
EXPOSE 8080
|
EXPOSE 8080
|
||||||
|
|
||||||
|
#Create app dir and install requirements.
|
||||||
RUN mkdir /opt/recipes
|
RUN mkdir /opt/recipes
|
||||||
WORKDIR /opt/recipes
|
WORKDIR /opt/recipes
|
||||||
COPY . ./
|
|
||||||
RUN chmod +x boot.sh
|
|
||||||
|
|
||||||
|
COPY requirements.txt ./
|
||||||
RUN apk add --no-cache --virtual .build-deps gcc musl-dev postgresql-dev zlib-dev jpeg-dev libressl-dev libffi-dev && \
|
RUN apk add --no-cache --virtual .build-deps gcc musl-dev postgresql-dev zlib-dev jpeg-dev libressl-dev libffi-dev && \
|
||||||
python -m venv venv && \
|
python -m venv venv && \
|
||||||
venv/bin/pip install -r requirements.txt --no-cache-dir &&\
|
venv/bin/pip install -r requirements.txt --no-cache-dir &&\
|
||||||
apk --purge del .build-deps
|
apk --purge del .build-deps
|
||||||
|
|
||||||
|
#Copy project and execute it.
|
||||||
|
COPY . ./
|
||||||
|
RUN chmod +x boot.sh
|
||||||
ENTRYPOINT ["/opt/recipes/boot.sh"]
|
ENTRYPOINT ["/opt/recipes/boot.sh"]
|
Loading…
Reference in New Issue
Block a user