Skip to content

Commit

Permalink
Initial Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
mtrojnar committed Oct 9, 2023
1 parent a5690f2 commit 4166476
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# Stage 1: Build osslsigncode on Alpine
FROM alpine:latest AS builder

# Install build dependencies
RUN apk add --no-cache build-base cmake openssl-dev curl-dev

# Copy osslsigncode source code into the image
COPY . /source

# Build osslsigncode
RUN cd /source && \
mkdir -p build && \
cd build && \
rm -f CMakeCache.txt && \
cmake -S .. && \
cmake --build . && \
cmake --install .

# Stage 2: Create final image without build environment
FROM alpine:latest

# Copy compiled binary from builder stage
COPY --from=builder /usr/local/bin/osslsigncode /usr/local/bin/osslsigncode

# Install necessary runtime libraries (latest version)
RUN apk add --no-cache libcrypto3 libcurl

# Set working directory
WORKDIR /workdir

# Declare volume to mount files
VOLUME [ "/workdir" ]

0 comments on commit 4166476

Please sign in to comment.