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 the entire project into the container
COPY . . COPY . .
# Install dependencies for building the application # Install dependencies for building the application, including make
RUN apk add --no-cache bash git go gcc musl-dev curl fuse libxml2-utils RUN apk add --no-cache bash git go gcc musl-dev curl fuse libxml2-utils make
# Set build arguments # Set build arguments
ENV BUILT_AT=$BuiltAt ENV BUILT_AT=$BuiltAt