10 lines
231 B
Docker
10 lines
231 B
Docker
FROM python:3.9
|
|
WORKDIR /3m
|
|
RUN apk update && apk add git mariadb-dev build-base
|
|
|
|
COPY ./requirements.txt /app/requirements.txt
|
|
|
|
RUN pip install --no-cache-dir --upgrade -r /app/requirements.txt
|
|
|
|
COPY . .
|
|
ENTRYPOINT ["/3m/run.sh"]
|