Merge branch 'master' of https://git.ventilaar.nl/ventilaar/amazing-ytdlp-archive
Generate release / build-and-publish (push) Successful in 21s Details

This commit is contained in:
Ventilaar 2024-03-06 14:06:09 +01:00
commit c71bd547ca
No known key found for this signature in database
1 changed files with 2 additions and 1 deletions

View File

@ -1,6 +1,7 @@
FROM python:3-alpine
WORKDIR /app
COPY . /app
COPY requirements.txt /app
RUN pip install --no-cache-dir -r requirements.txt
COPY . /app
EXPOSE 8000
CMD ["gunicorn", "--bind", "0.0.0.0:8000", "ayta:create_app()"]