This commit is contained in:
Kevin Restaino
2023-09-01 00:48:50 -07:00
commit 464d6a8ef3
8 changed files with 633 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
# 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"]