Merge branch 'release/v1.1.5'

This commit is contained in:
Caesar Kabalan 2023-10-25 15:43:54 -07:00
commit 979da7e962
No known key found for this signature in database
GPG key ID: DDFEF5FF6CFAB608
4 changed files with 58 additions and 1 deletions

4
.dockerignore Normal file
View file

@ -0,0 +1,4 @@
.gitignore
src/cloudformation.yaml
LICENSE
README.md

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

View file

@ -1,6 +1,6 @@
{
"dependencies": {
"bootstrap": "^5.2.3",
"bootstrap": "^5.3.2",
"lz-string": "^1.5.0",
"http-server": "^14.1.1"
},