fix: docker
All checks were successful
ci/woodpecker/push/publish Pipeline was successful

This commit is contained in:
Mylloon 2023-12-22 04:03:45 +01:00
parent fab8063bb9
commit e4af01e789
Signed by: Anri
GPG key ID: A82D63DFF8D1317F
5 changed files with 4 additions and 4 deletions

View file

@ -1,8 +1,8 @@
from glob import glob
from os import mkdir, urandom
from config import Config
from flask import Flask
from utils.config import Config
app = Flask(__name__, static_url_path="/")

View file

@ -1,5 +1,5 @@
from config import Config
from flask import Blueprint, flash, redirect, render_template, request
from utils.config import Config
from utils.misc import create_post, fresh_file_id, get_posts
from werkzeug import Response

View file

@ -1,5 +1,5 @@
from config import Config
from flask import Blueprint, flash, redirect, render_template, request
from utils.config import Config
from werkzeug import Response
name = __name__.split(".")[-1]

View file

@ -1,5 +1,5 @@
from config import Config
from flask import Blueprint, flash, redirect, render_template
from utils.config import Config
from utils.misc import delete_post, get_post, post_file_id, post_filename
from werkzeug import Response