diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..7ac2694 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,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"]