15 lines
456 B
Docker
15 lines
456 B
Docker
FROM python:3.10.1-alpine@sha256:dce56d40d885d2c8847aa2a278a29d50450c8e3d10f9d7ffeb2f38dcc1eb0ea4
|
|
|
|
WORKDIR /workdir/
|
|
|
|
ENV RELAY_VERSION="5c5f212d709aa44280f487aae01cf45a458f0762"
|
|
|
|
RUN apk upgrade --no-cache \
|
|
&& apk add --no-cache alpine-sdk autoconf automake libtool gcc git \
|
|
&& git clone https://git.pleroma.social/pleroma/relay.git . \
|
|
&& git checkout "${RELAY_VERSION}" \
|
|
&& pip3 install .
|
|
|
|
CMD ["python", "-m", "relay"]
|
|
|
|
VOLUME ["/workdir/data"]
|