mirror of
https://lavaforge.org/spotizerr/spotizerr-auth.git
synced 2025-12-23 18:29:16 -05:00
18 lines
429 B
Docker
18 lines
429 B
Docker
# Use an official Python runtime as a parent image
|
|
FROM python:3.11-slim
|
|
|
|
# Set environment variables to avoid interactive prompts
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
|
|
# Install git and other dependencies
|
|
RUN apt-get update && \
|
|
apt-get install -y git && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
WORKDIR /spotizerr-auth
|
|
|
|
RUN pip install spotizerr-auth==1.1.1
|
|
|
|
# Set the default command to run the application
|
|
CMD ["spotizerr-auth"]
|