Add pre-req for dockerizing app
This commit is contained in:
parent
345437c8d6
commit
4f8f8856b2
31
.gitea/workflows/build_image.yaml
Normal file
31
.gitea/workflows/build_image.yaml
Normal file
@ -0,0 +1,31 @@
|
||||
name: ci
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- 'release'
|
||||
|
||||
jobs:
|
||||
docker:
|
||||
runs-on: ubuntu-22.04
|
||||
steps:
|
||||
#-
|
||||
# name: Set up QEMU
|
||||
# uses: docker/setup-qemu-action@v3
|
||||
-
|
||||
name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v3
|
||||
-
|
||||
name: Login to Docker Hub
|
||||
uses: SeptBlast/docker-login@v1.1.2
|
||||
with:
|
||||
login-server: harbor.fisherhome.xyz
|
||||
username: ${{ secrets.HARBOR_USERNAME }}
|
||||
password: ${{ secrets.HARBOR_PASSWORD }}
|
||||
|
||||
- uses: actions/checkout@v3
|
||||
- name: Build and push
|
||||
run: |
|
||||
docker login --username ${{ secrets.HARBOR_USERNAME }} --password ${{ secrets.HARBOR_PASSWORD }} harbor.fisherhome.xyz
|
||||
docker build --no-cache ./ -t harbor.fisherhome.xyz/library/tooloftheweek-frontend:latest
|
||||
docker push harbor.fisherhome.xyz/library/tooloftheweek-frontend:latest
|
5
Dockerfile
Normal file
5
Dockerfile
Normal file
@ -0,0 +1,5 @@
|
||||
FROM 3.12.6-alpine
|
||||
|
||||
COPY . /app
|
||||
|
||||
CMD [flask run]
|
Loading…
Reference in New Issue
Block a user