Skip to content

Commit aef0f3b

Browse files
authored
Merge pull request #24 from ComputerScienceHouse/cole-dev
clean: dependabot + pr template
2 parents b74142e + 6a5441e commit aef0f3b

File tree

3 files changed

+42
-0
lines changed

3 files changed

+42
-0
lines changed

.github/dependabot.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "pip" # See documentation for possible values
4+
directory: "/" # Location of package manifests
5+
schedule:
6+
interval: "weekly"

.github/pull_request_template.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
## What
2+
3+
_what the PR changes_
4+
5+
## Why
6+
7+
_why these changes were made_
8+
9+
## Test Plan
10+
11+
_how did you verify these changes did what you expected_
12+
13+
## Env Vars
14+
15+
_did you add, remove, or rename any environment variables_
16+
17+
## Checklist
18+
19+
- [ ] Tested all changes locally

Dockerfile

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
FROM python:3.13
2+
WORKDIR /usr/local/jumpstart
3+
4+
COPY requirements.txt .
5+
RUN pip install --no-cache-dir -r requirements.txt
6+
7+
COPY jumpstart jumpstart
8+
9+
EXPOSE 5000
10+
11+
RUN useradd jumpstart
12+
RUN chown jumpstart /usr/local/jumpstart
13+
RUN mkdir -p /usr/local/var
14+
RUN chown jumpstart:jumpstart /usr/local/var
15+
USER jumpstart
16+
17+
CMD ["gunicorn", "jumpstart:app"]

0 commit comments

Comments
 (0)