Build fixes (#76)

* Fix compose syntax error

It turns out that docker compose does not like a literal `true`
but it will accept a `"true"` string.

* Added missing && operators
This commit is contained in:
Anders Borch
2023-04-26 09:53:11 +02:00
committed by GitHub
parent 04d498668d
commit e19a85a5d0
2 changed files with 4 additions and 4 deletions

View File

@ -2,9 +2,9 @@ FROM node:18.16.0-alpine as front
RUN apk update && apk upgrade && \
apk add --no-cache bash git openssh && \
apk add libc6-compat \
apk add python3 \
apk add make \
apk add libc6-compat && \
apk add python3 && \
apk add make && \
apk add g++
WORKDIR /app/front