2022-07-10 19:31:37 +02:00
|
|
|
FROM node:16-alpine
|
2022-06-30 14:10:19 +02:00
|
|
|
|
|
|
|
|
# needed to compile translations
|
2022-07-10 19:31:37 +02:00
|
|
|
RUN apk add --no-cache jq bash coreutils python3
|
2022-06-30 14:10:19 +02:00
|
|
|
|
|
|
|
|
EXPOSE 8080
|
|
|
|
|
WORKDIR /app/
|
|
|
|
|
COPY scripts/ ./scripts/
|
|
|
|
|
ADD package.json yarn.lock ./
|
|
|
|
|
RUN yarn install
|
|
|
|
|
|
|
|
|
|
COPY . .
|
|
|
|
|
|
|
|
|
|
CMD ["yarn", "serve"]
|