-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add: first files for Docker image (might not work yet, will try it out) :)
- Loading branch information
1 parent
36d0ac6
commit 2c3763b
Showing
2 changed files
with
15 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Use the official Python image as the base image | ||
FROM python:3.11-slim | ||
|
||
# Set the working directory inside the container | ||
WORKDIR /app | ||
|
||
# Copy your code into the container | ||
COPY . /app | ||
|
||
# Install Python dependencies (if any) | ||
# Uncomment and modify the following line if you have a requirements.txt | ||
RUN pip install --no-cache-dir -r requirements.txt | ||
|
||
# Set the default command to run Python scripts | ||
CMD ["python3"] |
Empty file.