Skip to content

Commit

Permalink
Disable runtime assertions for the Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthäus Wininger committed Jan 12, 2024
1 parent 78bccf8 commit 30985e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ WORKDIR /app/
# Copy source files to working directory
COPY src .
# Compile
RUN gcc -s -O3 -Wall -Wextra -pedantic zps.c -o zps
RUN gcc -s -O3 -Wall -Wextra -pedantic -DNDEBUG zps.c -o zps
# Create Alpine image for runtime
FROM alpine:3.16.2 AS runtime-image
# Set working directory
Expand Down

0 comments on commit 30985e8

Please sign in to comment.