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:
@ -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
|
||||
|
||||
Reference in New Issue
Block a user