fix Dockerfile

This commit is contained in:
Captain Arepa 2025-03-19 16:45:22 -04:00
parent 85f9c49be7
commit 2de492d506
2 changed files with 4 additions and 2 deletions

View file

@ -1,5 +1,7 @@
FROM elixir:1.14-alpine AS builder
RUN apk add --no-cache git build-base cmake postgresql-dev
RUN apk add --no-cache erlang erlang-runtime-tools erlang-xmerl elixir
RUN apk add ffmpeg imagemagick exiftool
WORKDIR /pleroma
RUN git clone https://git.pleroma.social/pleroma/pleroma.git .
RUN mix local.hex --force && mix local.rebar --force

View file

@ -2,8 +2,8 @@ FROM node:18-alpine AS builder
WORKDIR /app
RUN apk add --no-cache git && \
git clone https://git.pleroma.social/pleroma/pleroma-fe.git .
RUN npm install
RUN npm run build
RUN yarn
RUN yarn build
FROM alpine:latest
WORKDIR /app
COPY --from=builder /app/dist /app/dist