Skip to content

Commit

Permalink
Merge pull request #3 from cityofkamloops/library-package
Browse files Browse the repository at this point in the history
Library package
  • Loading branch information
sparul93 authored Feb 8, 2024
2 parents 5eee1eb + 536cb5e commit 3df6c39
Show file tree
Hide file tree
Showing 5 changed files with 227 additions and 226 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Login to GitHub Container Registry
uses: docker/login-action@v1
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
Expand All @@ -43,4 +43,4 @@ jobs:
context: .
platforms: linux/amd64
push: true
tags: ${{ steps.meta.outputs.tags }}
tags: ${{ steps.meta.outputs.tags }}
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
.run
.idea
.idea
*.egg-info
__pycache__
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ WORKDIR /app
COPY requirements.txt .
RUN pip3 install -r requirements.txt
COPY . .
ENTRYPOINT ["python3", "filepass.py"]
ENTRYPOINT ["python3", "filepass.py"]
1 change: 1 addition & 0 deletions src/filepass/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from .filepass import file_pass, ftps_connection, smb_connection, ssh_connection
Loading

0 comments on commit 3df6c39

Please sign in to comment.