llm / Dockerfile
2ch's picture
Create Dockerfile
7a8b8b8 verified
raw
history blame contribute delete
No virus
350 Bytes
FROM python:3.12
WORKDIR /code
RUN pip install fastapi uvicorn
RUN --mount=type=secret,id=TOKEN,mode=0444,required=true --mount=type=secret,id=APP_URL,mode=0444,required=true \
curl -H "Authorization: Bearer $(cat /run/secrets/TOKEN)" -o app.py $(cat /run/secrets/APP_URL)
COPY . .
RUN chmod 777 /code && chmod 777 /code/*
CMD python /code/app.py