Install make inside build container

This commit is contained in:
Ben Adrian Sarmiento
2024-07-20 00:59:08 +02:00
parent 1e3f7982b5
commit 5a9c3baaf1

View File

@@ -8,8 +8,8 @@ WORKDIR /app
# Copy the entire project into the container
COPY . .
# Install dependencies for building the application
RUN apk add --no-cache bash git go gcc musl-dev curl fuse libxml2-utils
# Install dependencies for building the application, including make
RUN apk add --no-cache bash git go gcc musl-dev curl fuse libxml2-utils make
# Set build arguments
ENV BUILT_AT=$BuiltAt