fix issues with time
Build image / build (push) Waiting to run Details
Unit Tests with docker compose and cargo / unit-test (push) Has been cancelled Details
Unit Tests with docker compose and cargo / unit-test (pull_request) Failing after 55s Details

This commit is contained in:
Alie 2024-11-29 15:44:39 +01:00
parent fdad62f0b2
commit ceb57052ed
2 changed files with 666 additions and 574 deletions

1236
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -7,10 +7,8 @@
################################################################################
# Create a stage for building the application.
ARG RUST_VERSION=1.71.0
ARG APP_NAME=mastodon-image-uploader-bot
FROM rust:${RUST_VERSION}-slim-bullseye AS build
ARG APP_NAME
FROM rust:1.79.0-slim-bullseye AS build
WORKDIR /app
RUN apt update && apt install pkg-config openssl libssl-dev -y
# Build the application.