mirror of
https://git.pleroma.social/pleroma/relay.git
synced 2024-11-09 18:08:00 +00:00
a8c81f1d40
(Prevents a fatal error about not being a git repository)
12 lines
233 B
Docker
12 lines
233 B
Docker
FROM python:3-alpine
|
|
WORKDIR /workdir
|
|
RUN apk add alpine-sdk autoconf automake libtool gcc
|
|
|
|
ADD requirements.txt /workdir/
|
|
RUN pip3 install -r requirements.txt
|
|
|
|
ADD . /workdir/
|
|
CMD ["python", "-m", "relay"]
|
|
|
|
VOLUME ["/workdir/data"]
|