mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-04 04:29:17 +02:00
10 lines
112 B
Docker
10 lines
112 B
Docker
FROM node:9
|
|
|
|
EXPOSE 8080
|
|
WORKDIR /app/
|
|
ADD package.json .
|
|
RUN yarn install
|
|
|
|
COPY . .
|
|
|
|
CMD ["npm", "run", "dev"]
|