funquail/front/Dockerfile

13 lines
283 B
Text
Raw Normal View History

FROM node:9
# needed to compile translations
RUN curl -L -o /usr/local/bin/jq https://github.com/stedolan/jq/releases/download/jq-1.5/jq-linux64 && chmod +x /usr/local/bin/jq
EXPOSE 8080
2018-01-08 22:47:14 +01:00
WORKDIR /app/
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"]