From 7ef262be18fad897bf6b6dcf84ecee15f105f5a3 Mon Sep 17 00:00:00 2001 From: fleaz Date: Sun, 16 Mar 2025 00:42:49 +0100 Subject: [PATCH] ci: Build Docker image --- .forgejo/workflows/deploy.yaml | 11 +++++++++++ Dockerfile | 17 +++++++++++++++++ 2 files changed, 28 insertions(+) create mode 100644 .forgejo/workflows/deploy.yaml create mode 100644 Dockerfile diff --git a/.forgejo/workflows/deploy.yaml b/.forgejo/workflows/deploy.yaml new file mode 100644 index 0000000..8ec46ab --- /dev/null +++ b/.forgejo/workflows/deploy.yaml @@ -0,0 +1,11 @@ +jobs: + build: + - uses: actions/checkout@v4 + - name: Build + uses: https://codeberg.org/umglurf/kaniko-action@main + with: + credentials: | + https://index.docker.io/v1/=${{ secrets.DCKER_USER }}:${{ secrets.DOCKER_PASSWORD }} + destinations: | + docker.io/fleaz/shippinglabel:latest + push: true diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..0e4854c --- /dev/null +++ b/Dockerfile @@ -0,0 +1,17 @@ +FROM python:3.12 + +WORKDIR /code +COPY poetry.lock pyproject.toml /code/ + +RUN curl -sSL https://install.python-poetry.org | python3 - + +# Project initialization: +RUN /root/.local/bin/poetry install --no-interaction --no-ansi + +# Creating folders, and files for a project: +COPY main.py /code +COPY convert.py /code +COPY templates/ /code/templates +COPY static/ /code/static + +CMD ["/root/.local/bin/poetry", "run", "python", "main.py"]