Merge branch 'release/v1.1.5'
This commit is contained in:
commit
979da7e962
4 changed files with 58 additions and 1 deletions
4
.dockerignore
Normal file
4
.dockerignore
Normal file
|
@ -0,0 +1,4 @@
|
|||
.gitignore
|
||||
src/cloudformation.yaml
|
||||
LICENSE
|
||||
README.md
|
40
.github/workflows/docker_build_and_push.yml
vendored
Normal file
40
.github/workflows/docker_build_and_push.yml
vendored
Normal file
|
@ -0,0 +1,40 @@
|
|||
name: docker
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- 'develop'
|
||||
- 'main'
|
||||
|
||||
env:
|
||||
DOCKERHUB_TAG: ${{ env.BRANCH == 'main' && 'latest' || 'develop' }}
|
||||
|
||||
|
||||
jobs:
|
||||
docker:
|
||||
runs-on: ubuntu-latest
|
||||
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: docker/login-action@v3
|
||||
with:
|
||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||
-
|
||||
id: container_name
|
||||
uses: ASzc/change-string-case-action@v5
|
||||
with:
|
||||
string: ${{ github.repository_owner }}/${{ github.event.repository.name }}
|
||||
-
|
||||
name: Build and push
|
||||
uses: docker/build-push-action@v5
|
||||
with:
|
||||
push: true
|
||||
tags: ${{ steps.container_name.outputs.lowercase }}:${{ env.DOCKERHUB_TAG }}
|
||||
|
13
Dockerfile
Normal file
13
Dockerfile
Normal file
|
@ -0,0 +1,13 @@
|
|||
FROM node:20-alpine as build
|
||||
|
||||
ARG REACT_APP_SERVICES_HOST=/services/m
|
||||
|
||||
COPY . /app
|
||||
WORKDIR /app/src
|
||||
|
||||
RUN npm install
|
||||
RUN npm run build
|
||||
|
||||
|
||||
FROM nginx
|
||||
COPY --from=build /app/dist /usr/share/nginx/html
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"dependencies": {
|
||||
"bootstrap": "^5.2.3",
|
||||
"bootstrap": "^5.3.2",
|
||||
"lz-string": "^1.5.0",
|
||||
"http-server": "^14.1.1"
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue