Update Dockerfile-api

use python:3.9.4-slim-buster img
This commit is contained in:
kiriharu 2021-06-02 23:51:32 +03:00 committed by GitHub
parent 459a7e14b1
commit 8a45f26d2e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,12 +1,10 @@
FROM python:3.8.3-alpine
FROM python:3.9.4-slim-buster
WORKDIR /usr/src/app
ENV PYTHONDONTWRITEBYTECODE 1
ENV PYTHONUNBUFFERED 1
RUN apk update \
&& apk add gcc python3-dev musl-dev libffi-dev openssl-dev make g++
RUN apt update && apt install gcc -y
COPY . .
WORKDIR api/api
RUN pip install --upgrade pip; pip install poetry; poetry config virtualenvs.create false; poetry install; poetry add uwsgi