Skip to content

Commit

Permalink
clean
Browse files Browse the repository at this point in the history
  • Loading branch information
ysawa0 committed Nov 9, 2023
1 parent 4b30c9a commit 17ee69c
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions example/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
FROM python:3.10-slim

# Set the working directory in the container to /app
# Create and set the working directory
WORKDIR /app

# Copy the current directory contents into the container at /app
COPY . .

# Install any needed packages specified in requirements.txt
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt

COPY . .

CMD ["python", "./main.py"]

0 comments on commit 17ee69c

Please sign in to comment.