funquail/front/Dockerfile

14 lines
231 B
Text
Raw Normal View History

2022-02-03 08:32:59 +00:00
FROM node:16-buster
# needed to compile translations
RUN apt-get update && apt-get install -y jq
EXPOSE 8080
2018-01-08 22:47:14 +01:00
WORKDIR /app/
COPY scripts/ ./scripts/
ADD package.json yarn.lock ./
2018-03-02 00:14:55 +01:00
RUN yarn install
2018-04-16 21:00:56 +02:00
2018-01-08 22:47:14 +01:00
COPY . .
CMD ["yarn", "serve"]