add initial dockerfile

This commit is contained in:
Failure 2024-07-24 19:09:56 -07:00
parent f02866725e
commit ff343f686b

9
Dockerfile Normal file
View file

@ -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"]