This repository has been archived on 2021-12-08. You can view files and clone it, but cannot push or open issues or pull requests.
activity-relay-docker/Dockerfile
Samuel Philipp 26b92eeb2f
All checks were successful
continuous-integration/woodpecker the build was successful
updated to use master branch
2021-11-28 02:45:05 +01:00

16 lines
456 B
Docker

FROM python:3.10.0-alpine@sha256:1aac9b1e6201c1a224742e2f9ab0ca37689e6c9754b94380b05c520749fb8668
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"]