funkwhale/front/Dockerfile.dev

15 wiersze
236 B
Docker
Czysty Zwykły widok Historia

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