Skip to content
This repository has been archived by the owner on Feb 28, 2020. It is now read-only.

Commit

Permalink
🚑 Fixes build argument for wheels
Browse files Browse the repository at this point in the history
  • Loading branch information
frenck committed Jun 23, 2019
1 parent eb9411a commit a9ea6d1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion appdaemon/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ SHELL ["/bin/bash", "-o", "pipefail", "-c"]
COPY requirements.txt /tmp/

# Setup base
ARG BUILD_ARCH=amd64
RUN \
apk add --no-cache --virtual .build-dependencies \
gcc=8.3.0-r0 \
Expand All @@ -21,6 +22,7 @@ RUN \
\
&& pip3 install \
--no-cache-dir \
--prefer-binary \
--find-links "https://wheels.hass.io/alpine-3.10/${BUILD_ARCH}/" \
-r /tmp/requirements.txt \
\
Expand All @@ -35,7 +37,6 @@ RUN \
COPY rootfs /

# Build arguments
ARG BUILD_ARCH
ARG BUILD_DATE
ARG BUILD_REF
ARG BUILD_VERSION
Expand Down

0 comments on commit a9ea6d1

Please sign in to comment.