* chore: add types of schema * Ease codegen use on FE * chore: ignore prettier in generated files * lint: generated files * feature: strongly type filter of query * chore: ignore generated files in prettier * chore: eslint ignore generated files --------- Co-authored-by: Sammy Teillet <sammy.teillet@gmail.com> Co-authored-by: Charles Bochet <charles@twenty.com>
20 lines
380 B
Docker
20 lines
380 B
Docker
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 g++
|
|
|
|
WORKDIR /app/front
|
|
|
|
COPY ../../front/package.json .
|
|
COPY ../../front/package-lock.json .
|
|
COPY ../../front/.npmrc .
|
|
RUN npm install
|
|
|
|
COPY ../../front .
|
|
|
|
CMD ["npm", "run", "start"]
|