Skip to content

Commit

Permalink
Merge pull request #18 from jpmcb/dockerfile-fix
Browse files Browse the repository at this point in the history
Dockerfile: fix typo in build vs. target platform
  • Loading branch information
jpmcb committed Aug 4, 2023
2 parents 147e8f6 + 5597c17 commit afc4d19
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
# remote code execution vulnerabilities.
#
# Uses the bullseye-slim debian image per the rust recommendation.
FROM --platform=$BUILDPLATFORM rust:1.71-slim-bullseye AS builder
FROM --platform=$TARGETPLATFORM rust:1.71-slim-bullseye AS builder

ARG BUILDPLATFORM
ARG TARGETPLATFORM

# Install g++ and other build essentials for compiling openssl/tls dependencies
RUN apt update
Expand Down

0 comments on commit afc4d19

Please sign in to comment.