Skip to content

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
DRSchlaubi authored Mar 1, 2024
1 parent 4582dfa commit da7b8b9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
FROM --platform=$TARGETOS/$TARGETARCH alpine AS curl
FROM --platform=$TARGETOS/$TARGETARCH debian AS curl

# Install build dependencies
RUN apk add openssl-dev make g++ curl
RUN apt install libssl-dev make g++ curl

# Download curl source from https://curl.se/download/
RUN curl -o curl.tgz https://curl.se/download/curl-8.5.0.tar.gz

# Unpack
RUN tar xzvf curl.tgz --strip-components=1
RUN tar xzvf curl.tgz --strip-components=1

# Configure
RUN ./configure --with-openssl --enable-websockets
Expand Down

0 comments on commit da7b8b9

Please sign in to comment.