Skip to content

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
TheWicklowWolf authored Oct 23, 2023
1 parent b2a3ae3 commit 92eb91b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM python:3.11
FROM python:3.11-slim
RUN apt-get update && apt-get install -y \
ffmpeg \
&& rm -rf /var/lib/apt/lists/*
COPY . /channeltube
WORKDIR /channeltube
RUN pip install -r requirements.txt
EXPOSE 5000
CMD ["gunicorn","src.ChannelTube:app", "-c", "gunicorn_config.py"]
CMD ["gunicorn","src.ChannelTube:app", "-c", "gunicorn_config.py"]

0 comments on commit 92eb91b

Please sign in to comment.