Skip to content

Commit 2c3763b

Browse files
Add Docker implementation
Add: first files for Docker image (might not work yet, will try it out) :)
1 parent 36d0ac6 commit 2c3763b

2 files changed

Lines changed: 15 additions & 0 deletions

File tree

Dockerfile

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Use the official Python image as the base image
2+
FROM python:3.11-slim
3+
4+
# Set the working directory inside the container
5+
WORKDIR /app
6+
7+
# Copy your code into the container
8+
COPY . /app
9+
10+
# Install Python dependencies (if any)
11+
# Uncomment and modify the following line if you have a requirements.txt
12+
RUN pip install --no-cache-dir -r requirements.txt
13+
14+
# Set the default command to run Python scripts
15+
CMD ["python3"]

requirements.txt

Whitespace-only changes.

0 commit comments

Comments
 (0)