You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems that Node v16.x currently doesn't seem to support Apple Silicon.
So I changed the node version to 14 in the Dockerfile of fcd and it works well:
# FROM node:lts as builder // beforeFROM node:14-alpine3.14 as builder
WORKDIR /app
COPY . .
RUN npm ci
# FROM node:lts-alpine // beforeFROM node:14-alpine3.14
RUN apk add --no-cache tzdata
WORKDIR /app
COPY --from=builder /app/entrypoint.sh /app/package.json /app/package-lock.json /app/tsconfig.json ./
COPY --from=builder /app/node_modules/ ./node_modules/
COPY --from=builder /app/apidoc-template/ ./apidoc-template/
COPY --from=builder /app/src/ ./src/
ENTRYPOINT [ "./entrypoint.sh" ]
CMD [ "--help" ]
I installed the LocalTerra according to its guide.
But it doesn't seem to work with terra station.
If I run the command below, we can see the error log from the FCD API as shown in the capture.
TerraStation doesn't work as well.
The text was updated successfully, but these errors were encountered: