social media crossposting tool. 3rd time's the charm
mastodon misskey crossposting bluesky

remove targetplatform as we're not using docker buildx

zenfyr.dev 70e76687 ccb12f60

verified
Changed files
+2 -3
+2 -3
Containerfile
···
WORKDIR /app
RUN \
-
# Mount Apt cache and lib directories from Docker buildx caches
-
--mount=type=cache,id=apt-cache-${TARGETPLATFORM},target=/var/cache/apt,sharing=locked \
-
--mount=type=cache,id=apt-lib-${TARGETPLATFORM},target=/var/lib/apt,sharing=locked \
apt-get update; \
apt-get dist-upgrade -yq; \
apt-get install -y --no-install-recommends \
···
WORKDIR /app
RUN \
+
--mount=type=cache,id=apt-cache,target=/var/cache/apt,sharing=locked \
+
--mount=type=cache,id=apt-lib-cache,target=/var/lib/apt,sharing=locked \
apt-get update; \
apt-get dist-upgrade -yq; \
apt-get install -y --no-install-recommends \