lumbung.space-archived/Dockerfile

12 lines
206 B
Docker
Raw Normal View History

2021-04-23 08:33:58 +00:00
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"]