You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
366 B
Docker
15 lines
366 B
Docker
FROM python:3.8-alpine3.13
|
|
|
|
RUN apk add --update bash
|
|
RUN apk add --update python3
|
|
RUN apk add --update mariadb-dev
|
|
RUN apk add --update re2
|
|
RUN apk add --update re2-dev
|
|
RUN apk add --update git
|
|
RUN apk add --no-cache --virtual .build-deps python3-dev build-base linux-headers gcc
|
|
RUN pip3 install --upgrade pip
|
|
|
|
COPY . .
|
|
|
|
RUN pip install -r requirements/common.txt
|