grim/anzu

Add a makefile and add linting and run support and clean up all the lint
FROM python:3-alpine
RUN apk add --no-cache gcc libc-dev luajit-dev
RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
COPY requirements.txt /usr/src/app/
RUN pip install --no-cache-dir -r requirements.txt
COPY . /usr/src/app
EXPOSE 11011
CMD PYTHONPATH=`pwd`/src python -m anzu