v0.1.0
This commit is contained in:
26
Dockerfile
Normal file
26
Dockerfile
Normal file
@@ -0,0 +1,26 @@
|
||||
# Use the official Python image as a base image
|
||||
FROM python:3.12-slim
|
||||
|
||||
# Set the working directory
|
||||
WORKDIR /jellyplist
|
||||
|
||||
# Copy requirements file and install dependencies
|
||||
COPY requirements.txt ./
|
||||
RUN pip install --no-cache-dir -r requirements.txt
|
||||
RUN apt update
|
||||
RUN apt install ffmpeg netcat-openbsd -y
|
||||
# Copy the application code
|
||||
COPY . .
|
||||
COPY entrypoint.sh /entrypoint.sh
|
||||
RUN chmod +x /entrypoint.sh
|
||||
|
||||
# Expose the port the app runs on
|
||||
EXPOSE 5055
|
||||
|
||||
|
||||
# Set the entrypoint
|
||||
ENTRYPOINT ["/entrypoint.sh"]
|
||||
|
||||
|
||||
# Run the application
|
||||
CMD ["python", "run.py"]
|
||||
Reference in New Issue
Block a user