Dockerfile 387 B

12345678910111213141516171819202122232425
  1. FROM alpine
  2. LABEL \
  3. maintainer="Davide Alberani <da@erlug.linux.it>"
  4. RUN \
  5. apk add --no-cache \
  6. python3 \
  7. py3-tornado \
  8. py3-cffi \
  9. py3-six \
  10. py3-requests \
  11. py3-tz \
  12. py3-dateutil \
  13. py3-decorator \
  14. py3-cryptography && \
  15. pip3 install Mastodon.py
  16. COPY ssl /ssl
  17. COPY static /static
  18. COPY toot-my-t-shirt /
  19. WORKDIR /
  20. EXPOSE 80
  21. ENTRYPOINT ["python3", "toot-my-t-shirt"]