Files
sptnr/Dockerfile
T
Kevin Restaino 464d6a8ef3 init
2024-01-07 14:07:18 -05:00

15 lines
398 B
Docker

# Use an official Python runtime as a parent image
FROM python:3.9-slim
# Set the working directory in the container
WORKDIR /usr/src/app
# Copy the current directory contents into the container at /usr/src/app
COPY . .
# Install any needed packages specified in requirements.txt
RUN pip install --no-cache-dir -r requirements.txt
# Use an entrypoint script
ENTRYPOINT ["python", "./sptnr.py"]