mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-06 03:19:56 +02:00
13 lines
125 B
Docker
13 lines
125 B
Docker
FROM node:6-alpine
|
|
|
|
EXPOSE 8080
|
|
|
|
RUN mkdir /app
|
|
WORKDIR /app
|
|
ADD package.json .
|
|
|
|
RUN npm install
|
|
|
|
ADD . .
|
|
|
|
RUN npm run build
|