Add front base image

Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
This commit is contained in:
Andrey Sobolev 2025-01-13 15:28:49 +07:00
parent 463d6463e0
commit 701be73079
No known key found for this signature in database
GPG Key ID: BD80F68D68D8F7F2
4 changed files with 11 additions and 2 deletions

View File

@ -52,6 +52,9 @@ jobs:
username: hardcoreeng
password: ${{ secrets.DOCKER_ACCESS_TOKEN }}
- name: Publish base image
env:
DOCKER_CLI_HINTS: false
DOCKER_EXTRA: --platform=linux/amd64,linux/arm64
run: |
echo Pushing base image
cd ./dev/base-image

View File

@ -2,4 +2,5 @@
docker build -t hardcoreeng/base -f base.Dockerfile .
docker build -t hardcoreeng/rekoni-base -f rekoni.Dockerfile .
docker build -t hardcoreeng/print-base -f print.Dockerfile .
docker build -t hardcoreeng/print-base -f print.Dockerfile .
docker build -t hardcoreeng/front-base -f print.Dockerfile .

View File

@ -0,0 +1,4 @@
FROM hardcoreeng/base
WORKDIR /usr/src/app
RUN npm install --ignore-scripts=false --verbose sharp@v0.32.6 --unsafe-perm

View File

@ -2,4 +2,5 @@
docker push hardcoreeng/base
docker push hardcoreeng/rekoni-base
docker push hardcoreeng/print-base
docker push hardcoreeng/print-base
docker push hardcoreeng/front-base