mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-05 18:24:21 +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"]
|