This commit is contained in:
2024-04-14 13:55:53 +02:00
parent 64f2473938
commit d2a9754923
3 changed files with 17 additions and 2 deletions

View File

@@ -10,12 +10,15 @@ RUN cargo build --release --bin telegram_files_cache_server
FROM debian:bullseye-slim
RUN apt-get update \
&& apt-get install -y openssl ca-certificates \
&& apt-get install -y openssl ca-certificates curl jq \
&& rm -rf /var/lib/apt/lists/*
RUN update-ca-certificates
COPY ./scripts/*.sh /
RUN chmod +x /*.sh
WORKDIR /app
COPY --from=builder /app/target/release/telegram_files_cache_server /usr/local/bin
ENTRYPOINT ["/usr/local/bin/telegram_files_cache_server"]
CMD ["/start.sh"]