Skip to content

Commit

Permalink
Add Docker implementation
Browse files Browse the repository at this point in the history
Add: first files for Docker image (might not work yet, will try it out) :)
  • Loading branch information
Celeste-VANDAMME committed Jan 17, 2025
1 parent 36d0ac6 commit 2c3763b
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions Dockerfile
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 added requirements.txt
Empty file.

0 comments on commit 2c3763b

Please sign in to comment.