This commit is contained in:
decentral1se
2021-04-23 10:33:58 +02:00
commit 8d8f355a57
7 changed files with 760 additions and 0 deletions

11
Dockerfile Normal file
View File

@ -0,0 +1,11 @@
FROM python:alpine
EXPOSE 8000
COPY ./lumbung.space /lumbung.space
ENTRYPOINT ["/bin/sh"]
RUN apk add --no-cache curl
CMD ["-c", "python -m http.server --bind 0.0.0.0 --directory /lumbung.space 8000"]