mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-04 01:29:16 +02:00
13 lines
283 B
Docker
13 lines
283 B
Docker
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
|
|
WORKDIR /app/
|
|
ADD package.json yarn.lock ./
|
|
RUN yarn install
|
|
|
|
COPY . .
|
|
|
|
CMD ["yarn", "serve"]
|