Add pre-req for dockerizing app

This commit is contained in:
Matthew Fisher 2024-09-25 19:39:57 -05:00
parent 345437c8d6
commit 4f8f8856b2
2 changed files with 36 additions and 0 deletions

View 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
View File

@ -0,0 +1,5 @@
FROM 3.12.6-alpine
COPY . /app
CMD [flask run]