mirror of
https://github.com/nikdoof/simple-webfinger.git
synced 2025-12-13 10:22:15 +00:00
14 lines
266 B
Docker
14 lines
266 B
Docker
# syntax=docker/dockerfile:1.6
|
|
FROM --platform=$BUILDPLATFORM python:3.11-alpine
|
|
|
|
WORKDIR /app
|
|
|
|
COPY requirements.txt /app
|
|
RUN --mount=type=cache,target=/root/.cache/pip \
|
|
pip3 install -r requirements.txt
|
|
|
|
COPY app.py /app
|
|
|
|
ENTRYPOINT ["python3"]
|
|
CMD ["app.py"]
|