ci: Build Docker image
This commit is contained in:
parent
ce057bd4b4
commit
7ef262be18
2 changed files with 28 additions and 0 deletions
11
.forgejo/workflows/deploy.yaml
Normal file
11
.forgejo/workflows/deploy.yaml
Normal file
|
@ -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
|
17
Dockerfile
Normal file
17
Dockerfile
Normal file
|
@ -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"]
|
Loading…
Add table
Reference in a new issue