Skip to content

Commit

Permalink
few updates
Browse files Browse the repository at this point in the history
  • Loading branch information
wmuldergov committed Jan 3, 2025
1 parent 7df2e49 commit e66d619
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ name: Build & Deploy Image to OpenShift

on:
workflow_dispatch:
push:
branches: [main]

jobs:
build:
Expand Down
20 changes: 19 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,19 @@
/.env
# Ignore virtual environments
.venv/
__pycache__/

# Ignore version control files
.git/
.gitignore

# Ignore Docker-specific files
Dockerfile
docker-compose.yml

# Ignore environment files
.env

# Ignore build artifacts
*.pyc
*.pyo
*.log
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ RUN apt-get update && apt-get install -y \
&& rm -rf /var/lib/apt/lists/*

# RUN git clone https://github.com/evan-harley/h-drive-email.git .
COPY ./pyproject.toml /app/
COPY . /app/

RUN pip3 install poetry

Expand Down

0 comments on commit e66d619

Please sign in to comment.