You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
538 B
24 lines
538 B
FROM python:3.8-alpine |
|
|
|
RUN apk add --no-cache gcc |
|
RUN apk add --no-cache python3-dev |
|
RUN apk add --no-cache libc-dev |
|
RUN apk add --no-cache libffi-dev |
|
RUN apk add --no-cache openssl |
|
RUN apk add --no-cache openssl-dev |
|
|
|
RUN adduser -D deploy |
|
USER deploy |
|
ENV PATH "$PATH:/home/deploy/.local/bin" |
|
|
|
COPY . /app |
|
WORKDIR /app |
|
|
|
RUN pip install --upgrade pip |
|
RUN pip install gunicorn |
|
RUN pip install wheel |
|
|
|
RUN pip install -r requirements.txt |
|
RUN flit install --pth-file |
|
|
|
CMD ["gunicorn", "--paster", "/app/production.ini", "-b", "0.0.0.0:8000"]
|
|
|