feature/IO-2979-DST-Handling

- Add LocalStack and Adjust local Emailing

Signed-off-by: Dave Richer <dave@imexsystems.ca>
This commit is contained in:
Dave Richer
2024-10-09 13:00:16 -04:00
parent 50d47cd679
commit 2bf074d85a
8 changed files with 151 additions and 71 deletions

View File

@@ -25,6 +25,9 @@ RUN dnf install -y \
# Set the working directory
WORKDIR /app
# This is because our test route uses a git commit hash
RUN git config --global --add safe.directory /app
# Copy package.json and package-lock.json
COPY package*.json ./
@@ -32,7 +35,7 @@ COPY package*.json ./
RUN npm install -g nodemon
# Install dependencies
RUN npm install --omit=dev
RUN npm ci
# Copy the rest of your application code
COPY . .