Skip to content

Commit

Permalink
New file
Browse files Browse the repository at this point in the history
  • Loading branch information
hangtantai committed Nov 25, 2024
1 parent 325eba9 commit e95f5f8
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
__pycache__
*.pyc
*.pyo
*.pyd
.Python
env
venv
ENV
.git
.gitignore
11 changes: 11 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Use an official Python runtime as a parent image
FROM python:3.9-slim

# Set the working directory in the container
WORKDIR /app

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

# Run the hello-world.py script
CMD ["python", "hello-world.py"]
Empty file added hello-world.py
Empty file.

0 comments on commit e95f5f8

Please sign in to comment.