TelegramApiServer/Dockerfile

14 lines
335 B
Docker
Raw Normal View History

2024-06-10 11:32:22 +02:00
FROM danog/madelineproto:latest
2020-03-09 00:42:17 +01:00
2024-05-23 18:28:18 +02:00
RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
2024-05-14 13:39:42 +02:00
COPY --from=ghcr.io/ufoscout/docker-compose-wait:latest /wait /usr/local/bin/docker-compose-wait
2024-06-17 19:23:36 +02:00
RUN echo 1.0.0 > /tas_version
2020-03-09 00:42:17 +01:00
EXPOSE 9503
2024-07-01 12:29:31 +02:00
ENV UV_USE_IO_URING=0
2024-05-27 17:05:36 +02:00
ENTRYPOINT ["./entrypoint.sh"]