Merge branch 'dev'

tool_synapse-compress-state
Ruakij 2 years ago
commit a62258447b

@ -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}")

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

@ -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

Loading…
Cancel
Save