Adding Docker support (#6)

* Adding dockerfile and github action

* typo

* adding repo owner to github action

* adding lowercase owner name

* adding step for container name

* typo

---------

Co-authored-by: Caesar Kabalan <caesar.kabalan@gmail.com>
This commit is contained in:
PurpleBabar 2023-10-25 23:52:56 +02:00 committed by GitHub
parent 950a6cea74
commit c3b21b58bb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 52 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,34 @@
name: docker
on:
push:
branches:
- 'main'
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 }}:latest

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"
},