Compare commits

..

No commits in common. "main" and "v3.9.3" have entirely different histories.
main ... v3.9.3

2 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
FROM alpine:3.19
FROM alpine:3.17
ENV MIX_ENV prod
ENV PATH "${PATH}:/opt/akkoma/bin"
@ -7,7 +7,7 @@ ENV AKKOMA_CONFIG_PATH "/config/config.exs"
# Install required (and optional) packages
RUN awk 'NR==2' /etc/apk/repositories | sed 's/main/community/' | tee -a /etc/apk/repositories && \
apk update && \
apk add su-exec curl unzip ncurses file-dev imagemagick ffmpeg exiftool
apk add su-exec curl unzip ncurses file-dev imagemagick ffmpeg exiftool libcrypto1.1
# Set entrypoint
COPY ./entrypoint.sh /entrypoint.sh

View File

@ -4,7 +4,7 @@ set -e
if [ "$1" = 'pleroma' ] || [ "$1" = 'pleroma_ctl' ]
then
mkdir -p /data/uploads /data/static
mkdir -p /data/{uploads,static}
mkdir -p /config
chown -R akkoma /data /config