From 1a697a911195929aba1f2ea5e8c1c5fa3393fe86 Mon Sep 17 00:00:00 2001 From: Oscar Krause Date: Fri, 16 Dec 2022 13:55:17 +0100 Subject: [PATCH] Dockerfile & .gitlab-ci.yaml --- .gitlab-ci.yml | 26 ++++++++++++++++++++++++++ Dockerfile | 16 ++++++++++++++++ 2 files changed, 42 insertions(+) create mode 100644 .gitlab-ci.yml create mode 100644 Dockerfile diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..b716d5a --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,26 @@ +cache: + key: one-key-to-rule-them-all + +build: + image: docker:dind + interruptible: true + stage: build + rules: + - if: $CI_COMMIT_BRANCH + tags: [ docker ] + script: + - docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY + - docker build . --tag ${CI_REGISTRY}/${CI_PROJECT_PATH}/${CI_BUILD_REF_NAME}:${CI_BUILD_REF} + - docker push ${CI_REGISTRY}/${CI_PROJECT_PATH}/${CI_BUILD_REF_NAME}:${CI_BUILD_REF} + +test: + stage: test + script: + - echo "Nothing to do ..." + +deploy: + stage: deploy + rules: + - if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH + script: + - echo "Nothing to do ..." diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..5430cfa --- /dev/null +++ b/Dockerfile @@ -0,0 +1,16 @@ +FROM python:3.10-alpine + +COPY requirements.txt /tmp/requirements.txt + +RUN apk update \ + && apk add --no-cache --virtual build-deps gcc g++ python3-dev musl-dev \ + && apk add --no-cache postgresql postgresql-dev mariadb-connector-c-dev \ + && pip install --no-cache-dir --upgrade uvicorn \ + && pip install --no-cache-dir psycopg2==2.9.3 mysqlclient==2.1.1 pysqlite3==0.4.7 \ + && pip install --no-cache-dir -r /tmp/requirements.txt \ + && apk del build-deps + +COPY app /app + +HEALTHCHECK --start-period=30s --interval=10s --timeout=5s --retries=3 CMD curl --fail http://localhost/status || exit 1 +CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "443", "--app-dir", "/app", "--proxy-headers"]