Skip to content

Commit

Permalink
Add Dockerfile for software_team example
Browse files Browse the repository at this point in the history
* Use Python 3.10-slim as the base image
* Set the working directory to /app
* Copy all files into the Docker image
* Install dependencies from requirements.txt
* Set the entrypoint to run main.py
  • Loading branch information
yongenaelf committed Nov 6, 2024
1 parent 28563f4 commit 9bde0a4
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions examples/software_team/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,6 @@ FROM python:3.10-slim

# Set the working directory
WORKDIR /app

# Copy the software_team example files into the Docker image
ARG EXAMPLES_DIR=examples/software_team
COPY . /app
RUN pip install --no-cache-dir -r requirements.txt

Expand Down

0 comments on commit 9bde0a4

Please sign in to comment.