mirror of
https://github.com/kou029w/nttr.fly.dev.git
synced 2025-02-25 18:05:17 +00:00
6 lines
175 B
Docker
6 lines
175 B
Docker
FROM zedeus/nitter:latest
|
|
RUN apk --no-cache add gettext
|
|
COPY entrypoint.sh nitter.example.conf /
|
|
WORKDIR /src
|
|
ENTRYPOINT ["/entrypoint.sh"]
|
|
CMD ["/bin/sh", "-c", "./nitter"]
|