missing slash

This commit is contained in:
Florian Bezannier
2021-06-24 14:37:15 +02:00
parent 25ddf0abbb
commit df7a266d6f
+1 -1
View File
@@ -2,7 +2,7 @@ FROM python:3-slim
ARG TARGETPLATFORM
COPY . /psa_car_controller/
WORKDIR /config
RUN if [ "$TARGETPLATFORM" = "linux/arm/v7" ] || [ "$TARGETPLATFORM" = "linux/arm64" ]; then
RUN if [ "$TARGETPLATFORM" = "linux/arm/v7" ] || [ "$TARGETPLATFORM" = "linux/arm64" ]; then \
apt-get update && apt-get install -y gcc g++ && apt-get clean ; \
rm -rf /var/lib/apt/lists/* ; \
fi ; \