nomad

HCL and Docker files for Nomad deployments
git clone https://git.in0rdr.ch/nomad.git
Log | Files | Refs | Pull requests

commit 6030356baf43d52987b0b328996060a23e872cf9
parent ba617cb4e29ec8de90ccfaa055b37d47a7b82c9e
Author: Andreas Gruhler <andreas.gruhler@adfinis.com>
Date:   Sat, 28 Sep 2024 17:18:49 +0200

fix(myheats-nginx): use nodejs builder

Diffstat:
Mdocker/docker-myheats-nginx/Dockerfile | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/docker/docker-myheats-nginx/Dockerfile b/docker/docker-myheats-nginx/Dockerfile @@ -1,4 +1,4 @@ -FROM docker.io/nginx:alpine AS builder +FROM docker.io/node:18-alpine AS builder # Read args from build command ARG VITE_APP_DOC_TITLE='My Heats' @@ -23,7 +23,7 @@ ENV VITE_WS_PORT="$VITE_WS_PORT" ENV VITE_LOCALE="$VITE_LOCALE" RUN apk update -RUN apk add --no-cache git npm +RUN apk add --no-cache git WORKDIR /app RUN git clone --depth 1 https://git.in0rdr.ch/myheats.git /app