From 18b18c3d8169563510de7b3459952de87874da2d Mon Sep 17 00:00:00 2001 From: Lars Gohr Date: Fri, 31 Mar 2023 03:00:12 +0200 Subject: [PATCH 1/2] Updated elgohr/Publish-Docker-Github-Action to a supported version (v5) (#73) --- .github/workflows/docker-image.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml index fd82e22..47fe892 100644 --- a/.github/workflows/docker-image.yml +++ b/.github/workflows/docker-image.yml @@ -12,7 +12,7 @@ jobs: steps: - uses: actions/checkout@master - name: Publish to Registry - uses: elgohr/Publish-Docker-Github-Action@master + uses: elgohr/Publish-Docker-Github-Action@v5 with: name: frishi/threetwo username: ${{ secrets.DOCKER_USERNAME }} -- 2.49.1 From 967a82dea54a6619650734904ab2eeb2b5c9c7c3 Mon Sep 17 00:00:00 2001 From: Rishi Ghan Date: Fri, 31 Mar 2023 00:06:46 -0400 Subject: [PATCH 2/2] =?UTF-8?q?=F0=9F=90=B3=20Fixes=20to=20the=20Dockerfil?= =?UTF-8?q?e?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 4db86ca..785da1c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:17.3-alpine +FROM node:18.15.0-alpine LABEL maintainer="Rishi Ghan " WORKDIR /threetwo @@ -9,7 +9,7 @@ COPY nodemon.json ./ COPY jsdoc.json ./ # RUN apt-get update && apt-get install -y git python3 build-essential autoconf automake g++ libpng-dev make -RUN apk --no-cache add g++ make libpng-dev python3 git libc6-compat autoconf automake bash libjpeg-turbo-dev libpng-dev mesa-dev mesa libxi build-base gcc libtool nasm +RUN apk --no-cache add g++ make libpng-dev git python3 libc6-compat autoconf automake libjpeg-turbo-dev libpng-dev mesa-dev mesa libxi build-base gcc libtool nasm RUN yarn --ignore-engines diff --git a/package.json b/package.json index 7de8d5b..8808b77 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ "scripts": { "build": "vite build", "dev": "rimraf dist && npm run build && vite", - "prod": "npm run build && vite", + "start": "npm run build && vite", "docs": "jsdoc -c jsdoc.json", "storybook": "storybook dev -p 6006", "build-storybook": "storybook build" -- 2.49.1