Skip to content

Commit b01441e

Browse files
committed
edit: small changes
1 parent 227650f commit b01441e

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

.github/workflows/docker-image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ env:
1111

1212
jobs:
1313
build-and-push-image:
14-
runs-on: ubuntu-latest
14+
runs-on: self-hosted
1515
permissions:
1616
contents: read
1717
packages: write

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ RUN yarn build
99

1010

1111
#Building main conteiner
12-
FROM debian:bookworm-slim as base
12+
FROM debian:stable-slim as base
1313
RUN apt-get update -qq && apt-get upgrade -qq
1414
RUN apt-get install -qq python3-pip build-essential
1515
RUN apt-get install -qq git libpcre2-dev libnetfilter-queue-dev

backend/app.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
from utils import API_VERSION, FIREGEX_PORT, JWT_ALGORITHM, get_interfaces, socketio_emit, DEBUG, SysctlManager
1010
from utils.loader import frontend_deploy, load_routers
1111
from utils.models import ChangePasswordModel, IpInterface, PasswordChangeForm, PasswordForm, ResetRequest, StatusModel, StatusMessageModel
12-
from fastapi.middleware.cors import CORSMiddleware
1312

1413
# DB init
1514
db = SQLite('db/firegex.db')

0 commit comments

Comments
 (0)