Add dockerfile

This commit is contained in:
Michael Aldridge
2021-05-12 01:38:50 -07:00
parent ffe2ca44c7
commit 07b1ed62fb

8
Dockerfile Normal file
View File

@@ -0,0 +1,8 @@
FROM python:3-alpine
LABEL org.opencontainers.image.source github.com/akpw/mktxp
WORKDIR /mktxp
COPY . .
RUN pip install ./
EXPOSE 49090
ENTRYPOINT ["/usr/local/bin/mktxp"]
CMD ["export"]