funkwhale/front/Dockerfile

14 wiersze
283 B
Docker
Czysty Zwykły widok Historia

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 21:47:14 +00:00
WORKDIR /app/
ADD package.json yarn.lock ./
2018-03-01 23:14:55 +00:00
RUN yarn install
2018-04-16 19:00:56 +00:00
2018-01-08 21:47:14 +00:00
COPY . .
CMD ["yarn", "serve"]