Skip to content

Commit

Permalink
feat: fix GitHub Action (#91)
Browse files Browse the repository at this point in the history
* feat: fix GitHub Action

* feat: fix GitHub Action

* feat: fix GitHub Action
  • Loading branch information
OutOfEastGate authored Jan 18, 2023
1 parent 4d755a4 commit f3d2fe2
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
FROM golang:1.17
FROM golang:1.17 as STANDARD

RUN apt-get update && \
apt-get -y install unzip build-essential autoconf libtool

ARG TARGETOS
ARG TARGETARCH
ENV BUILDX_ARCH="${TARGETOS:-linux}_${TARGETARCH:-amd64}"

# Install protobuf from source
RUN curl -LjO https://github.com/protocolbuffers/protobuf/archive/refs/tags/v3.17.3.zip && \
unzip v3.17.3.zip && \
Expand Down

0 comments on commit f3d2fe2

Please sign in to comment.