9 lines
215 B
Docker
9 lines
215 B
Docker
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"]
|