Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# 📝 Pull Request

## Description
Briefly describe what this PR changes or adds.

---

## Testing
How can reviewers test your changes?
_Example:_
1. Run `npm start`
2. Navigate to `/profile`
3. Verify that the new component loads correctly

---

## Checklist
- [ ] Code builds and runs without errors
- [ ] Tests (if any) pass
- [ ] No unused files or comments
19 changes: 19 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
FROM ubuntu:22.04

RUN apt-get update \
&& apt-get install -y --no-install-recommends \
python3 python3-pip \
&& rm -rf /var/lib/apt/lists/*

COPY requirements.txt /tmp/requirements.txt
RUN pip install --upgrade pip \
&& pip install --no-cache-dir -r /tmp/requirements.txt

COPY /app /app
WORKDIR /app

RUN useradd appuser \
&& chown -R appuser:appuser /app
USER appuser

CMD ["python3", "app.py"]
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
# devops-programme
# Name: Teodor P
# Role: SRE
# Goals: I want to grow my knowledge and skills in DevOps space.
3 changes: 3 additions & 0 deletions bio.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
I’m an IT professional with wide experience across multiple technologies.

My goal is to gain knowledge related to DevOps culture.
3 changes: 1 addition & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,4 @@ flask==3.0.0 ; python_version >= "3.10" and python_version < "4.0"
itsdangerous==2.1.2 ; python_version >= "3.10" and python_version < "4.0"
jinja2==3.1.2 ; python_version >= "3.10" and python_version < "4.0"
markupsafe==2.1.3 ; python_version >= "3.10" and python_version < "4.0"
werkzeug==3.0.0 ; python_version >= "3.10" and python_version < "4.0"

werkzeug==3.0.0 ; python_version >= "3.10" and python_version < "4.0"