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"]