mirror of
https://git.pleroma.social/pleroma/pleroma.git
synced 2024-11-13 12:31:13 +00:00
9 lines
227 B
Docker
9 lines
227 B
Docker
FROM python:3.9
|
|
|
|
WORKDIR /code
|
|
COPY fastembed-server.py /workdir/fastembed-server.py
|
|
COPY requirements.txt /workdir/requirements.txt
|
|
|
|
RUN pip install -r /workdir/requirements.txt
|
|
|
|
CMD ["python", "/workdir/fastembed-server.py"]
|