Compare commits

...

2 Commits

Author SHA1 Message Date
Alie f2c2f0c05f Merge branch 'hotfix/v1.0.1'
Unit Tests with docker compose and cargo / unit-test (push) Successful in 1m17s Details
Build image / build (push) Successful in 34m15s Details
2024-02-23 17:46:58 +01:00
Alie 8386109e19 workdir does not persist layered images 2024-02-23 17:46:54 +01:00
3 changed files with 3 additions and 3 deletions

2
Cargo.lock generated
View File

@ -984,7 +984,7 @@ dependencies = [
[[package]]
name = "mastodon-image-uploader-bot"
version = "1.0.0"
version = "1.0.1"
dependencies = [
"async-std",
"log",

View File

@ -1,6 +1,6 @@
[package]
name = "mastodon-image-uploader-bot"
version = "1.0.0"
version = "1.0.1"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

View File

@ -41,7 +41,7 @@ EOF
# reproducability is important, consider using a digest
# (e.g., debian@sha256:ac707220fbd7b67fc19b112cee8170b41a9e97f703f588b2cdbbcdcecdd8af57).
FROM debian:bullseye-slim AS final
WORKDIR /app
# Create a non-privileged user that the app will run under.
# See https://docs.docker.com/develop/develop-images/dockerfile_best-practices/#user
ARG UID=10001