Merge branch 'dev'

This commit is contained in:
Ruakij 2022-11-24 09:53:56 +01:00
commit a62258447b
3 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
#!/bin/sh #!/bin/bash
scriptPath_file=$(dirname "${BASH_SOURCE[0]}") scriptPath_file=$(dirname "${BASH_SOURCE[0]}")
scriptPath_folder=$(realpath "${scriptPath_file}") scriptPath_folder=$(realpath "${scriptPath_file}")

View File

@ -1,4 +1,4 @@
#!/bin/sh #!/bin/bash
# --- VARIABLES --- # --- VARIABLES ---
# Load variables # Load variables

View File

@ -4,10 +4,10 @@ WORKDIR /app
# ---- Build ---- # ---- Build ----
FROM rust:alpine AS build FROM rust:1.65.0-slim AS build
WORKDIR /build WORKDIR /build
# Install packages # Install packages
RUN apk add --no-cache make libc-dev build-base RUN apt update && apt install -y make
# Copy sources # Copy sources
ADD .build/repository/ . ADD .build/repository/ .
# Update dependencies and Compile # Update dependencies and Compile