funkwhale/front/Dockerfile

15 wiersze
231 B
Docker
Czysty Zwykły widok Historia

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 21:47:14 +00:00
WORKDIR /app/
COPY scripts/ ./scripts/
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"]