Skip to content

Commit

Permalink
Merge branch 'release/v1.1.5'
Browse files Browse the repository at this point in the history
  • Loading branch information
ckabalan committed Oct 25, 2023
2 parents ef8cf3e + 51b59d9 commit 979da7e
Show file tree
Hide file tree
Showing 4 changed files with 58 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.gitignore
src/cloudformation.yaml
LICENSE
README.md
40 changes: 40 additions & 0 deletions .github/workflows/docker_build_and_push.yml
Original file line number Diff line number Diff line change
@@ -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 changes: 13 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion src/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"dependencies": {
"bootstrap": "^5.2.3",
"bootstrap": "^5.3.2",
"lz-string": "^1.5.0",
"http-server": "^14.1.1"
},
Expand Down

0 comments on commit 979da7e

Please sign in to comment.