Skip to content
Snippets Groups Projects
Unverified Commit 04037f1e authored by Max Adamo's avatar Max Adamo
Browse files

DEV-154 pre for CI

parent 12346e22
No related branches found
No related tags found
No related merge requests found
......@@ -9,9 +9,9 @@ COPY requirements.txt /app/requirements.txt
RUN pip3 install -r /app/requirements.txt
COPY ../webapp /app/.
COPY ../sq_project_list.py /app/.
COPY ../sq_webapp.py /app/.
COPY ../config.py /app/.
COPY ../sq_project_list.py /app/
COPY ../sq_webapp.py /app/
COPY ../config.py /app/
CMD ["python3", "-m" , "flask", "run", "--host=0.0.0.0"]
# syntax=docker/dockerfile:1
FROM python:3.8-slim-buster
WORKDIR /app
COPY . /app/
RUN pip3 install -r /app/requirements.txt
CMD ["python3", "-m" , "flask", "run", "--host=0.0.0.0"]
......@@ -4,7 +4,7 @@ print(f"DEBUG: config {basedir}")
class Config(object):
SQLALCHEMY_TRACK_MODIFICATIONS = False
INIT_LOCATION = '/secrete/config.ini'
INIT_LOCATION = '/secrets/config.ini'
# this is a test
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment