spotify-embed/Dockerfile

18 lines
301 B
Docker
Raw Permalink Normal View History

2024-09-04 23:18:39 +00:00
# Set the base image
FROM python:alpine3.19
# Copy the files to the container
COPY src /app
COPY requirements.txt /app
# Set the working directory
WORKDIR /app
# Install dependencies
RUN pip install -r requirements.txt
# Expose the port
EXPOSE 3425
# Run the application
CMD ["python", "main.py"]