Skip to content

Commit

Permalink
Merge pull request #4 from mattermost/fix-build-2
Browse files Browse the repository at this point in the history
fix typo in dockerfile
  • Loading branch information
stafot authored Feb 7, 2024
2 parents 861e4da + 3aaf76a commit b260278
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Use the latest Alpine version
FROM --platform=$TARGETPLAFORM alpine:3.19 AS build_stage
FROM --platform=${TARGETPLATFORM} alpine:3.19 AS build_stage

# Install necessary build dependencies
RUN apk --update --no-cache add \
Expand Down Expand Up @@ -28,7 +28,7 @@ RUN curl -Lso "/tmp/pgbouncer.tar.gz" "https://pgbouncer.github.io/downloads/fi
make

# Create runtime image
FROM --platform=$TARGETPLAFORM alpine:3.19
FROM --platform=${TARGETPLATFORM} alpine:3.19

# Install runtime dependencies
RUN apk --update --no-cache add \
Expand Down

0 comments on commit b260278

Please sign in to comment.