This repository has been archived on 2025-08-04. You can view files and clone it, but cannot push or open issues or pull requests.
Files
lumbung.space-archived/Dockerfile
decentral1se 8d8f355a57 Init
2021-04-23 10:33:58 +02:00

12 lines
206 B
Docker

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