updog icon indicating copy to clipboard operation
updog copied to clipboard

Add Dockerfile

Open crstian19 opened this issue 5 years ago • 2 comments

I wrote one already, it works for me, maybe it will help others 😙

FROM python:3.8-alpine

WORKDIR /uploads
VOLUME /uploads

RUN apk add gcc musl-dev libffi-dev openssl-dev

RUN pip install updog

EXPOSE 9090

CMD ["updog"]

I think it should be better if instead of pip installing it installed the requirements.txt, but I wrote it this way and it works 😅

crstian19 avatar Feb 23 '20 22:02 crstian19