Merge pull request #8 from the-maldridge/docker

Add dockerfile
This commit is contained in:
Arseniy Kuznetsov
2021-05-22 18:15:26 +02:00
committed by GitHub

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