forked from CopyBot/sptnr
init
This commit is contained in:
+14
@@ -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"]
|
||||
Reference in New Issue
Block a user